Home
last modified time | relevance | path

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

/linux/arch/riscv/include/asm/
H A Dinsn.h458 ({typeof(x) x_ = (x); \
459 (RV_X_MASK(x_, RV_INSN_FUNCT3_OPOFF, \
463 ({typeof(x) x_ = (x); \
464 (RV_X_MASK(x_, RVG_RS1_OPOFF, RVG_RS1_MASK)); })
467 ({typeof(x) x_ = (x); \
468 (RV_X_MASK(x_, RVG_RS2_OPOFF, RVG_RS2_MASK)); })
471 ({typeof(x) x_ = (x); \
472 (RV_X_MASK(x_, RVG_RD_OPOFF, RVG_RD_MASK)); })
475 ({typeof(x) x_ = (x); \
476 (RV_X_MASK(x_, RV_U_IMM_31_12_OPOFF, RV_U_IMM_31_12_MASK)); })
[all …]
H A Dbitops.h154 typeof(x) x_ = (x); \
155 __builtin_constant_p(x_) ? \
156 ((x_ != 0) ? (32 - __builtin_clz(x_)) : 0) \
158 variable_fls(x_); \
/linux/drivers/usb/mtu3/
H A 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_); \
H A 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/include/linux/
H A Dmath.h138 typeof(x) x_ = (x); \ in __STRUCT_FRACT()
142 typeof(x_) q = x_ / d_; \ in __STRUCT_FRACT()
143 typeof(x_) r = x_ % d_; \ in __STRUCT_FRACT()
H A Dminmax.h89 __cmp_once_unique(op, type, x, y, __UNIQUE_ID(x_), __UNIQUE_ID(y_))
98 __careful_cmp_once(op, x, y, __UNIQUE_ID(x_), __UNIQUE_ID(y_))
144 __careful_op3(min, x, y, z, __UNIQUE_ID(x_), __UNIQUE_ID(y_), __UNIQUE_ID(z_))
153 __careful_op3(max, x, y, z, __UNIQUE_ID(x_), __UNIQUE_ID(y_), __UNIQUE_ID(z_))
/linux/arch/xtensa/include/asm/
H A 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/arch/powerpc/include/asm/
H A Dpapr-sysparm.h11 #define mk_papr_sysparm(x_) ((papr_sysparm_t){ .token = x_, }) argument
H A Drtas.h116 #define rtas_fn_handle(x_) ((const rtas_fn_handle_t) { .index = x_, }) argument
/linux/drivers/net/wireless/ath/wil6210/
H A 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()