/kernel/linux/linux-6.6/include/drm/ |
H A D | drm_atomic.h | 756 * @__i: int iteration cursor, for macro-internal use 762 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \ 763 for ((__i) = 0; \ 764 (__i) < (__state)->num_connector; \ 765 (__i)++) \ 766 for_each_if ((__state)->connectors[__i].ptr && \ 767 ((connector) = (__state)->connectors[__i].ptr, \ 769 (old_connector_state) = (__state)->connectors[__i].old_state, \ 770 (new_connector_state) = (__state)->connectors[__i].new_state, 1)) 778 * @__i [all...] |
/kernel/linux/linux-5.10/include/drm/ |
H A D | drm_atomic.h | 696 * @__i: int iteration cursor, for macro-internal use 702 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \ 703 for ((__i) = 0; \ 704 (__i) < (__state)->num_connector; \ 705 (__i)++) \ 706 for_each_if ((__state)->connectors[__i].ptr && \ 707 ((connector) = (__state)->connectors[__i].ptr, \ 709 (old_connector_state) = (__state)->connectors[__i].old_state, \ 710 (new_connector_state) = (__state)->connectors[__i].new_state, 1)) 718 * @__i [all...] |
H A D | drm_dp_mst_helper.h | 913 * @__i: int iteration cursor, for macro-internal use 919 #define for_each_oldnew_mst_mgr_in_state(__state, mgr, old_state, new_state, __i) \ 920 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \ 921 for_each_if(__drm_dp_mst_state_iter_get((__state), &(mgr), &(old_state), &(new_state), (__i))) 930 * @__i: int iteration cursor, for macro-internal use 936 #define for_each_old_mst_mgr_in_state(__state, mgr, old_state, __i) \ 937 for ((__i) = 0; (__i) < (__stat [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | cpu-set-sched.h | 20 size_t __i; \ 21 for (__i = 0; __i < __imax; ++__i) \ 22 if (__arr1[__i] != __arr2[__i]) \ 24 __i == __imax; })) 40 size_t __i; \ 41 for (__i = 0; __i < __ima [all...] |
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | cpu-set-sched.h | 20 size_t __i; \ 21 for (__i = 0; __i < __imax; ++__i) \ 22 if (__arr1[__i] != __arr2[__i]) \ 24 __i == __imax; })) 40 size_t __i; \ 41 for (__i = 0; __i < __ima [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/ |
H A D | intel_global_state.h | 32 #define for_each_new_global_obj_in_state(__state, obj, new_obj_state, __i) \ 33 for ((__i) = 0; \ 34 (__i) < (__state)->num_global_objs && \ 35 ((obj) = (__state)->global_objs[__i].ptr, \ 36 (new_obj_state) = (__state)->global_objs[__i].new_state, 1); \ 37 (__i)++) \ 40 #define for_each_old_global_obj_in_state(__state, obj, new_obj_state, __i) \ 41 for ((__i) = 0; \ 42 (__i) < (__state)->num_global_objs && \ 43 ((obj) = (__state)->global_objs[__i] [all...] |
H A D | intel_display.h | 418 #define for_each_old_intel_plane_in_state(__state, plane, old_plane_state, __i) \ 419 for ((__i) = 0; \ 420 (__i) < (__state)->base.dev->mode_config.num_total_plane && \ 421 ((plane) = to_intel_plane((__state)->base.planes[__i].ptr), \ 422 (old_plane_state) = to_intel_plane_state((__state)->base.planes[__i].old_state), 1); \ 423 (__i)++) \ 426 #define for_each_new_intel_plane_in_state(__state, plane, new_plane_state, __i) \ 427 for ((__i) = 0; \ 428 (__i) < (__state)->base.dev->mode_config.num_total_plane && \ 429 ((plane) = to_intel_plane((__state)->base.planes[__i] [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/ |
H A D | intel_global_state.h | 32 #define for_each_new_global_obj_in_state(__state, obj, new_obj_state, __i) \ 33 for ((__i) = 0; \ 34 (__i) < (__state)->num_global_objs && \ 35 ((obj) = (__state)->global_objs[__i].ptr, \ 36 (new_obj_state) = (__state)->global_objs[__i].new_state, 1); \ 37 (__i)++) \ 40 #define for_each_old_global_obj_in_state(__state, obj, new_obj_state, __i) \ 41 for ((__i) = 0; \ 42 (__i) < (__state)->num_global_objs && \ 43 ((obj) = (__state)->global_objs[__i] [all...] |
H A D | intel_display.h | 318 #define for_each_old_intel_plane_in_state(__state, plane, old_plane_state, __i) \ 319 for ((__i) = 0; \ 320 (__i) < (__state)->base.dev->mode_config.num_total_plane && \ 321 ((plane) = to_intel_plane((__state)->base.planes[__i].ptr), \ 322 (old_plane_state) = to_intel_plane_state((__state)->base.planes[__i].old_state), 1); \ 323 (__i)++) \ 326 #define for_each_old_intel_crtc_in_state(__state, crtc, old_crtc_state, __i) \ 327 for ((__i) = 0; \ 328 (__i) < (__state)->base.dev->mode_config.num_crtc && \ 329 ((crtc) = to_intel_crtc((__state)->base.crtcs[__i] [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/netfilter_bridge/ |
H A D | ebtables.h | 220 unsigned int __i; \ 224 for (__i = sizeof(struct ebt_entry); \ 225 __i < (e)->watchers_offset; \ 226 __i += __match->match_size + \ 228 __match = (void *)(e) + __i; \ 235 if (__i != (e)->watchers_offset) \ 243 unsigned int __i; \ 247 for (__i = e->watchers_offset; \ 248 __i < (e)->target_offset; \ 249 __i [all...] |
/kernel/linux/linux-6.6/include/uapi/linux/netfilter_bridge/ |
H A D | ebtables.h | 220 unsigned int __i; \ 224 for (__i = sizeof(struct ebt_entry); \ 225 __i < (e)->watchers_offset; \ 226 __i += __match->match_size + \ 228 __match = (void *)(e) + __i; \ 235 if (__i != (e)->watchers_offset) \ 243 unsigned int __i; \ 247 for (__i = e->watchers_offset; \ 248 __i < (e)->target_offset; \ 249 __i [all...] |
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/netfilter_bridge/ |
H A D | ebtables.h | 147 ({ unsigned int __i; int __ret = 0; struct ebt_entry_match * __match; for(__i = sizeof(struct ebt_entry); __i < (e)->watchers_offset; __i += __match->match_size + sizeof(struct ebt_entry_match)) { __match = (void *) (e) + __i; __ret = fn(__match, ##args); if(__ret != 0) break; } if(__ret == 0) { if(__i != (e)->watchers_offset) __ret = - EINVAL; } __ret; \ 150 ({ unsigned int __i; int __ret = 0; struct ebt_entry_watcher * __watcher; for(__i = e->watchers_offset; __i < (e)->target_offset; __i [all...] |
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/netfilter_bridge/ |
H A D | ebtables.h | 147 ({ unsigned int __i; int __ret = 0; struct ebt_entry_match * __match; for(__i = sizeof(struct ebt_entry); __i < (e)->watchers_offset; __i += __match->match_size + sizeof(struct ebt_entry_match)) { __match = (void *) (e) + __i; __ret = fn(__match, ##args); if(__ret != 0) break; } if(__ret == 0) { if(__i != (e)->watchers_offset) __ret = - EINVAL; } __ret; \ 150 ({ unsigned int __i; int __ret = 0; struct ebt_entry_watcher * __watcher; for(__i = e->watchers_offset; __i < (e)->target_offset; __i [all...] |
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/netfilter_bridge/ |
H A D | ebtables.h | 169 unsigned int __i; \ 173 for (__i = sizeof(struct ebt_entry); \ 174 __i < (e)->watchers_offset; \ 175 __i += __match->match_size + \ 177 __match = (void *)(e) + __i; \ 184 if (__i != (e)->watchers_offset) \ 191 unsigned int __i; \ 195 for (__i = e->watchers_offset; \ 196 __i < (e)->target_offset; \ 197 __i [all...] |
/kernel/linux/linux-5.10/lib/mpi/ |
H A D | longlong.h | 234 struct {USItype __l, __h; } __i; \ 240 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 243 struct {SItype __l, __h; } __i; \ 249 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 323 struct {USItype __h, __l; } __i; \ 329 (wh) = __xx.__i.__h; \ 330 (wl) = __xx.__i.__l; \ 355 struct {USItype __h, __l; } __i; \ [all...] |
/kernel/linux/linux-6.6/lib/crypto/mpi/ |
H A D | longlong.h | 234 struct {USItype __l, __h; } __i; \ 240 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 243 struct {SItype __l, __h; } __i; \ 249 (w1) = __xx.__i.__h; (w0) = __xx.__i.__l; }) 323 struct {USItype __h, __l; } __i; \ 329 (wh) = __xx.__i.__h; \ 330 (wl) = __xx.__i.__l; \ 355 struct {USItype __h, __l; } __i; \ [all...] |
/kernel/linux/linux-5.10/include/uapi/linux/netfilter/ |
H A D | x_tables.h | 131 unsigned int __i; \ 135 for (__i = sizeof(type); \ 136 __i < (e)->target_offset; \ 137 __i += __m->u.match_size) { \ 138 __m = (void *)e + __i; \ 150 unsigned int __i, __n; \ 154 for (__i = 0, __n = 0; __i < (size); \ 155 __i += __entry->next_offset, __n++) { \ 156 __entry = (void *)(entries) + __i; \ [all...] |
/kernel/linux/linux-6.6/include/uapi/linux/netfilter/ |
H A D | x_tables.h | 131 unsigned int __i; \ 135 for (__i = sizeof(type); \ 136 __i < (e)->target_offset; \ 137 __i += __m->u.match_size) { \ 138 __m = (void *)e + __i; \ 150 unsigned int __i, __n; \ 154 for (__i = 0, __n = 0; __i < (size); \ 155 __i += __entry->next_offset, __n++) { \ 156 __entry = (void *)(entries) + __i; \ [all...] |
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/netfilter/ |
H A D | x_tables.h | 94 ({ unsigned int __i; int __ret = 0; struct xt_entry_match * __m; for(__i = sizeof(type); __i < (e)->target_offset; __i += __m->u.match_size) { __m = (void *) e + __i; __ret = fn(__m, ##args); if(__ret != 0) break; } __ret; \ 97 ({ unsigned int __i, __n; int __ret = 0; type * __entry; for(__i = 0, __n = 0; __i < (size); __i += __entry->next_offset, __n ++) { __entry = (void *) (entries) + __i; i [all...] |
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/netfilter/ |
H A D | x_tables.h | 94 ({ unsigned int __i; int __ret = 0; struct xt_entry_match * __m; for(__i = sizeof(type); __i < (e)->target_offset; __i += __m->u.match_size) { __m = (void *) e + __i; __ret = fn(__m, ##args); if(__ret != 0) break; } __ret; \ 97 ({ unsigned int __i, __n; int __ret = 0; type * __entry; for(__i = 0, __n = 0; __i < (size); __i += __entry->next_offset, __n ++) { __entry = (void *) (entries) + __i; i [all...] |
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/netfilter/ |
H A D | x_tables.h | 95 unsigned int __i; \ 99 for (__i = sizeof(type); \ 100 __i < (e)->target_offset; \ 101 __i += __m->u.match_size) { \ 102 __m = (void *)e + __i; \ 112 unsigned int __i, __n; \ 116 for (__i = 0, __n = 0; __i < (size); \ 117 __i += __entry->next_offset, __n++) { \ 118 __entry = (void *)(entries) + __i; \ [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8188eu/include/ |
H A D | rtw_debug.h | 91 int __i; \ 95 for (__i = 0; __i < (int)_hexdatalen; __i++) { \ 96 pr_info("%02X%s", ptr[__i], \ 97 (((__i + 1) % 4) == 0) ? \ 99 if (((__i + 1) % 16) == 0) \
|
/kernel/linux/linux-6.6/include/drm/display/ |
H A D | drm_dp_mst_helper.h | 969 * @__i: int iteration cursor, for macro-internal use 975 #define for_each_oldnew_mst_mgr_in_state(__state, mgr, old_state, new_state, __i) \ 976 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \ 977 for_each_if(__drm_dp_mst_state_iter_get((__state), &(mgr), &(old_state), &(new_state), (__i))) 986 * @__i: int iteration cursor, for macro-internal use 992 #define for_each_old_mst_mgr_in_state(__state, mgr, old_state, __i) \ 993 for ((__i) = 0; (__i) < (__stat [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/hal/ |
H A D | odm_debug.h | 144 int __i;\ 149 for (__i = 0; __i < 6; __i++)\ 150 DbgPrint("%02X%s", __ptr[__i], (__i == 5) ? "" : "-");\
|
H A D | HalBtcOutSrc.h | 134 int __i;\ 138 for (__i = 0; __i < 6; __i++)\ 139 DbgPrint("%02X%s", ptr[__i], (__i == 5) ? "" : "-");\ 147 int __i;\ 150 for (__i = 0; __i < (int)_HexDataLen; __i [all...] |