Searched refs:__i (Results 1 - 25 of 40) sorted by last modified time

12

/linux-master/tools/objtool/include/objtool/
H A Delf.h312 for (int __i = 0, __fake = 1; __fake; __fake = 0) \
314 __i < sec_num_entries(rsec); \
315 __i++, reloc++)
318 for (int __i = reloc_idx(reloc); \
319 __i < sec_num_entries(rsec); \
320 __i++, reloc++)
/linux-master/include/drm/
H A Ddrm_atomic.h804 * @__i: int iteration cursor, for macro-internal use
810 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \
811 for ((__i) = 0; \
812 (__i) < (__state)->num_connector; \
813 (__i)++) \
814 for_each_if ((__state)->connectors[__i].ptr && \
815 ((connector) = (__state)->connectors[__i].ptr, \
817 (old_connector_state) = (__state)->connectors[__i].old_state, \
818 (new_connector_state) = (__state)->connectors[__i].new_state, 1))
826 * @__i
[all...]
/linux-master/drivers/md/
H A Ddm-verity-fec.c85 #define fec_for_each_prealloc_buffer(__i) \
86 for (__i = 0; __i < DM_VERITY_FEC_BUF_PREALLOC; __i++)
89 #define fec_for_each_extra_buffer(io, __i) \
90 for (__i = DM_VERITY_FEC_BUF_PREALLOC; __i < DM_VERITY_FEC_BUF_MAX; __i++)
93 #define fec_for_each_buffer(io, __i) \
94 for (__i
[all...]
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_global_state.h32 #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, old_obj_state, __i) \
41 for ((__i) = 0; \
42 (__i) < (__state)->num_global_objs && \
43 ((obj) = (__state)->global_objs[__i]
[all...]
H A Dintel_dpll_mgr.h33 #define for_each_shared_dpll(__i915, __pll, __i) \
34 for ((__i) = 0; (__i) < (__i915)->display.dpll.num_shared_dpll && \
35 ((__pll) = &(__i915)->display.dpll.shared_dplls[(__i)]) ; (__i)++)
H A Dintel_display.h315 #define for_each_old_intel_plane_in_state(__state, plane, old_plane_state, __i) \
316 for ((__i) = 0; \
317 (__i) < (__state)->base.dev->mode_config.num_total_plane && \
318 ((plane) = to_intel_plane((__state)->base.planes[__i].ptr), \
319 (old_plane_state) = to_intel_plane_state((__state)->base.planes[__i].old_state), 1); \
320 (__i)++) \
323 #define for_each_old_intel_crtc_in_state(__state, crtc, old_crtc_state, __i) \
324 for ((__i) = 0; \
325 (__i) < (__state)->base.dev->mode_config.num_crtc && \
326 ((crtc) = to_intel_crtc((__state)->base.crtcs[__i]
[all...]
/linux-master/drivers/gpu/drm/display/
H A Ddrm_dp_tunnel.c26 #define for_each_new_group_in_state(__state, __new_group_state, __i) \
27 for ((__i) = 0; \
28 (__i) < (__state)->num_private_objs; \
29 (__i)++) \
30 for_each_if ((__state)->private_objs[__i].ptr && \
31 is_dp_tunnel_private_obj((__state)->private_objs[__i].ptr) && \
33 to_group_state((__state)->private_objs[__i].new_state), 1))
35 #define for_each_old_group_in_state(__state, __old_group_state, __i) \
36 for ((__i) = 0; \
37 (__i) < (__stat
[all...]
/linux-master/drivers/gpio/
H A Dgpiolib.h117 for (unsigned int __i = 0; \
118 __i < gc->ngpio && (desc = gpiochip_get_desc(gc, __i)); \
119 __i++) \
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dreg_bounds.c831 int __i; \
832 for (__i = 0; __i < ARRAY_SIZE(__insns); __i++) \
833 insns[cur_pos + __i] = __insns[__i]; \
834 cur_pos += __i; \
/linux-master/fs/erofs/
H A Dzdata.c535 #define DECOMPRESS_FRONTEND_INIT(__i) { \
536 .inode = __i, .owned_head = Z_EROFS_PCLUSTER_TAIL, \
/linux-master/drivers/net/wireless/realtek/rtw89/
H A Dphy.c1958 u8 __i; \
1959 for (__i = 0; __i < RTW89_BF_NUM; __i++) \
1960 ptr[__i] = rtw89_phy_read_txpwr_limit(rtwdev, \
1963 rs, __i, \
H A Drtw8852c_rfk.c2980 u8 __idx = (idx), __i, __v; \
2982 for (__i = 0; __i < 4; __i++) { \
2983 __v = (__ptr[__idx + __i]); \
2984 __val |= (__v << (8 * __i)); \
H A Drtw8852b_rfk.c2785 u8 __idx = (idx), __i, __v; \
2787 for (__i = 0; __i < 4; __i++) { \
2788 __v = (__ptr[__idx + __i]); \
2789 __val |= (__v << (8 * __i)); \
/linux-master/arch/x86/include/asm/
H A Dlocal.h108 long __i = i; local
112 return i + __i;
/linux-master/drivers/hid/bpf/
H A Dhid_bpf_jmp_table.c48 #define FOR_ENTRIES(__i, __start, __end) \
49 for (__i = __start; CIRC_CNT(__end, __i, HID_BPF_MAX_PROGS); __i = NEXT(__i))
/linux-master/tools/perf/util/
H A Dsample.h60 for (int __i = 0; __i < (int)nr; v = next_sample_read_value(v, rf), __i++)
/linux-master/drivers/pinctrl/
H A Dcore.h262 for (unsigned int __i = 0; \
263 __i < _maps_node_->num_maps && (_map_ = &_maps_node_->maps[__i]); \
264 __i++)
/linux-master/include/drm/display/
H A Ddrm_dp_mst_helper.h990 * @__i: int iteration cursor, for macro-internal use
996 #define for_each_oldnew_mst_mgr_in_state(__state, mgr, old_state, new_state, __i) \
997 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \
998 for_each_if(__drm_dp_mst_state_iter_get((__state), &(mgr), &(old_state), &(new_state), (__i)))
1007 * @__i: int iteration cursor, for macro-internal use
1013 #define for_each_old_mst_mgr_in_state(__state, mgr, old_state, __i) \
1014 for ((__i) = 0; (__i) < (__stat
[all...]
/linux-master/drivers/iommu/
H A Domap-iommu.h16 #define for_each_iotlb_cr(obj, n, __i, cr) \
17 for (__i = 0; \
18 (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true); \
19 __i++)
/linux-master/security/apparmor/include/
H A Dmatch.h109 typeof(LEN) __i; \
112 for (__i = 0; __i < LEN; __i++) { \
113 __t[__i] = NTOHX(__b[__i]); \
H A Dlib.h242 struct label_it __i; \
251 label_for_each(__i, (L), (P)) { \
262 label_for_each(__i, __lvec[__j], (P)) \
/linux-master/include/net/
H A Dflow_offload.h361 #define flow_action_for_each(__i, __act, __actions) \
362 for (__i = 0, __act = &(__actions)->entries[0]; \
363 __i < (__actions)->num_entries; \
364 __act = &(__actions)->entries[++__i])
/linux-master/include/linux/surface_aggregator/
H A Dcontroller.h261 int __i, __s = 0; \
263 for (__i = (n); __i > 0; __i--) { \
/linux-master/lib/crypto/mpi/
H A Dlonglong.h234 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...]
/linux-master/include/uapi/linux/netfilter_bridge/
H A Debtables.h220 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...]

Completed in 389 milliseconds

12