/kernel/linux/linux-5.10/include/drm/ |
D | drm_atomic.h | 702 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_s… argument 704 (__i) < (__state)->num_connector; \ 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)) 724 #define for_each_old_connector_in_state(__state, connector, old_connector_state, __i) \ argument 726 (__i) < (__state)->num_connector; \ 728 for_each_if ((__state)->connectors[__i].ptr && \ 729 ((connector) = (__state)->connectors[__i].ptr, \ [all …]
|
D | drm_dp_mst_helper.h | 919 #define for_each_oldnew_mst_mgr_in_state(__state, mgr, old_state, new_state, __i) \ argument 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))) 936 #define for_each_old_mst_mgr_in_state(__state, mgr, old_state, __i) \ argument 937 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \ 938 for_each_if(__drm_dp_mst_state_iter_get((__state), &(mgr), &(old_state), NULL, (__i))) 954 #define for_each_new_mst_mgr_in_state(__state, mgr, new_state, __i) \ argument 955 for ((__i) = 0; (__i) < (__state)->num_private_objs; (__i)++) \ 956 for_each_if(__drm_dp_mst_state_iter_get((__state), &(mgr), NULL, &(new_state), (__i)))
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/ |
D | intel_global_state.h | 32 #define for_each_new_global_obj_in_state(__state, obj, new_obj_state, __i) \ argument 34 (__i) < (__state)->num_global_objs && \ 35 ((obj) = (__state)->global_objs[__i].ptr, \ 36 (new_obj_state) = (__state)->global_objs[__i].new_state, 1); \ 40 #define for_each_old_global_obj_in_state(__state, obj, new_obj_state, __i) \ argument 42 (__i) < (__state)->num_global_objs && \ 43 ((obj) = (__state)->global_objs[__i].ptr, \ 44 (new_obj_state) = (__state)->global_objs[__i].old_state, 1); \ 48 #define for_each_oldnew_global_obj_in_state(__state, obj, old_obj_state, new_obj_state, __i) \ argument 50 (__i) < (__state)->num_global_objs && \ [all …]
|
D | intel_display.h | 418 #define for_each_old_intel_plane_in_state(__state, plane, old_plane_state, __i) \ argument 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); \ 426 #define for_each_new_intel_plane_in_state(__state, plane, new_plane_state, __i) \ argument 428 (__i) < (__state)->base.dev->mode_config.num_total_plane && \ 429 ((plane) = to_intel_plane((__state)->base.planes[__i].ptr), \ 430 (new_plane_state) = to_intel_plane_state((__state)->base.planes[__i].new_state), 1); \ 434 #define for_each_new_intel_crtc_in_state(__state, crtc, new_crtc_state, __i) \ argument 436 (__i) < (__state)->base.dev->mode_config.num_crtc && \ [all …]
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
D | stv090x_priv.h | 37 #define STV090x_READ_DEMOD(__state, __reg) (( \ argument 38 (__state)->demod == STV090x_DEMODULATOR_1) ? \ 39 stv090x_read_reg(__state, STV090x_P2_##__reg) : \ 40 stv090x_read_reg(__state, STV090x_P1_##__reg)) 42 #define STV090x_WRITE_DEMOD(__state, __reg, __data) (( \ argument 43 (__state)->demod == STV090x_DEMODULATOR_1) ? \ 44 stv090x_write_reg(__state, STV090x_P2_##__reg, __data) :\ 45 stv090x_write_reg(__state, STV090x_P1_##__reg, __data)) 47 #define STV090x_ADDR_OFFST(__state, __x) (( \ argument 48 (__state->demod) == STV090x_DEMODULATOR_1) ? \
|
/kernel/linux/linux-5.10/include/linux/ |
D | bpf_verifier.h | 296 #define bpf_for_each_reg_in_vstate(__vst, __state, __reg, __expr) \ argument 302 __state = ___vstate->frame[___i]; \ 303 ___regs = __state->regs; \ 308 bpf_for_each_spilled_reg(___j, __state, __reg) { \
|
D | nodemask.h | 433 #define for_each_node_state(__node, __state) \ argument 434 for_each_node_mask((__node), node_states[__state]) 482 #define for_each_node_state(node, __state) \ argument
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | fw.h | 65 #define IS_IN_LOW_POWER_STATE_92E(__state) \ argument 66 (FW_PS_STATE(__state) == FW_PS_CLOCK_OFF)
|
/kernel/linux/linux-5.10/drivers/s390/cio/ |
D | qdio_main.c | 211 unsigned char __state = 0; in get_buf_states() local 218 __state = q->slsb.val[bufnr]; in get_buf_states() 221 if (__state & SLSB_OWNER_CU) in get_buf_states() 224 if (merge_pending && __state == SLSB_P_OUTPUT_PENDING) in get_buf_states() 225 __state = SLSB_P_OUTPUT_EMPTY; in get_buf_states() 233 __state == SLSB_P_OUTPUT_EMPTY) in get_buf_states() 237 if (q->slsb.val[bufnr] != __state) in get_buf_states() 242 *state = __state; in get_buf_states()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | fw.h | 113 #define IS_IN_LOW_POWER_STATE_8821AE(__state) \ argument 114 (FW_PS_STATE(__state) == FW_PS_CLOCK_OFF)
|
/kernel/linux/linux-5.10/drivers/net/pcs/ |
D | pcs-xpcs.c | 209 #define xpcs_warn(__xpcs, __state, __args...) \ argument 211 if ((__state)->link) \
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/ |
D | cnic_defs.h | 1501 u8 __state; member 1503 u8 __state;
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/drivers/ |
D | 0036_linux_drivers_staging.patch | 15597 + (state.as.state.__state[i] & mask) ? "no" : "yes", 15598 + (state.ds.state.__state[i] & mask) ? "yes" : "no"); 16693 + tmp.__state[0] = be32_to_cpu(tmp.__state[0]); 16694 + tmp.__state[1] = be32_to_cpu(tmp.__state[1]); 16702 + tmp.__state[i] &= p->pools[0].__state[i]; 16703 + if (tmp.__state[i] == p->pools[1].__state[i]) 17329 + state->as.state.__state[0] = be32_to_cpu(state->as.state.__state[0]); 17330 + state->as.state.__state[1] = be32_to_cpu(state->as.state.__state[1]); 17331 + state->ds.state.__state[0] = be32_to_cpu(state->ds.state.__state[0]); 17332 + state->ds.state.__state[1] = be32_to_cpu(state->ds.state.__state[1]); [all …]
|
/kernel/linux/linux-5.10/io_uring/ |
D | io_uring.c | 3575 struct iov_iter_state __state, *state; in io_read() local 3593 state = &__state; in io_read() 3714 struct iov_iter_state __state, *state; in io_write() local 3727 state = &__state; in io_write()
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/ |
D | 0005_linux_include.patch | 3999 + u32 __state[2]; 4008 + c->__state[0] = c->__state[1] = 0; 4012 + c->__state[0] = c->__state[1] = ~0; 4016 + return c->__state[__bmdep_word(bpid)] & __bmdep_bit(bpid); 4020 + c->__state[__bmdep_word(bpid)] |= __bmdep_bit(bpid); 4024 + c->__state[__bmdep_word(bpid)] &= ~__bmdep_bit(bpid); 5938 + u32 __state[8]; 6273 + return p->__state[__CGR_WORD(cgr)] & (0x80000000 >> __CGR_SHIFT(cgr));
|