Home
last modified time | relevance | path

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

/linux/arch/riscv/include/asm/
H A 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_OPOF
[all...]
/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_
[all...]
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_
[all...]
/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/include/linux/
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/powerpc/include/asm/
H A Drtas.h114 #define rtas_fn_handle(x_) ((const rtas_fn_handle_t) { .index = x_, }) argument
/linux/Documentation/filesystems/
H A Dpropagate_umount.txt157 chain of mounts (x_0 = x, ..., x_k = y, x_{k+1} = r), such that x_{k+1}
244 removed if and only if x_{i+1} does not overmount its root. It's easy
401 Then union of U with {x_{k+1}, ..., x_n} is obviously non-revealing.
405 of {x_0, ..., x_{k-1}} may be an element of a non-revealing subset of
/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()