Home
last modified time | relevance | path

Searched refs:x_ (Results 1 – 8 of 8) sorted by relevance

/linux-6.6.21/arch/riscv/include/asm/
Dinsn.h295 ({typeof(x) x_ = (x); \
296 (RV_X(x_, RVG_RS1_OPOFF, RVG_RS1_MASK)); })
299 ({typeof(x) x_ = (x); \
300 (RV_X(x_, RVG_RD_OPOFF, RVG_RD_MASK)); })
303 ({typeof(x) x_ = (x); \
304 (RV_X(x_, RV_U_IMM_31_12_OPOFF, RV_U_IMM_31_12_MASK)); })
307 ({typeof(x) x_ = (x); \
308 (RV_X(x_, RV_J_IMM_10_1_OPOFF, RV_J_IMM_10_1_MASK) << RV_J_IMM_10_1_OFF) | \
309 (RV_X(x_, RV_J_IMM_11_OPOFF, RV_J_IMM_11_MASK) << RV_J_IMM_11_OFF) | \
310 (RV_X(x_, RV_J_IMM_19_12_OPOFF, RV_J_IMM_19_12_MASK) << RV_J_IMM_19_12_OFF) | \
[all …]
/linux-6.6.21/drivers/usb/mtu3/
Dmtu3_hw_regs.h147 typeof(x) x_ = (x); \
148 (g2c) ? TX_MULT_G2(x_) : TX_MULT_OG(x_); \
152 typeof(x) x_ = (x); \
153 (g2c) ? TX_MAX_PKT_G2(x_) : TX_MAX_PKT_OG(x_); \
186 typeof(x) x_ = (x); \
187 (g2c) ? RX_MULT_G2(x_) : RX_MULT_OG(x_); \
191 typeof(x) x_ = (x); \
192 (g2c) ? RX_MAX_PKT_G2(x_) : RX_MAX_PKT_OG(x_); \
Dmtu3_qmu.c40 typeof(x) x_ = (x); \
41 ((mtu)->gen2cp) ? GPD_RX_BUF_LEN_EL(x_) : GPD_RX_BUF_LEN_OG(x_); \
48 typeof(x) x_ = (x); \
49 ((mtu)->gen2cp) ? GPD_DATA_LEN_EL(x_) : GPD_DATA_LEN_OG(x_); \
59 typeof(x) x_ = (x); \
60 ((mtu)->gen2cp) ? GPD_EXT_NGP_EL(x_) : GPD_EXT_NGP_OG(x_); \
65 typeof(x) x_ = (x); \
66 ((mtu)->gen2cp) ? GPD_EXT_BUF_EL(x_) : GPD_EXT_BUF_OG(x_); \
/linux-6.6.21/include/linux/
Dmath.h124 typeof(x) x_ = (x); \ in __STRUCT_FRACT()
128 typeof(x_) q = x_ / d_; \ in __STRUCT_FRACT()
129 typeof(x_) r = x_ % d_; \ in __STRUCT_FRACT()
/linux-6.6.21/arch/powerpc/include/asm/
Dpapr-sysparm.h9 #define mk_papr_sysparm(x_) ((papr_sysparm_t){ .token = x_, }) argument
Drtas.h113 #define rtas_fn_handle(x_) ((const rtas_fn_handle_t) { .index = x_, }) argument
/linux-6.6.21/arch/xtensa/include/asm/
Duaccess.h130 #define __put_user_asm(x_, addr_, err_, align, insn, cb)\ argument
147 :[x] "r"(x_), [efault] "i"(-EFAULT))
198 #define __get_user_asm(x_, addr_, err_, align, insn, cb) \ argument
218 (x_) = (__force __typeof__(*(addr_)))__x; \
/linux-6.6.21/drivers/net/wireless/ath/wil6210/
Ddebugfs.c1260 static bool is_all_zeros(void * const x_, size_t sz) in is_all_zeros() argument
1263 u32 *x = x_; in is_all_zeros()