Home
last modified time | relevance | path

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

/openbmc/linux/arch/riscv/include/asm/
H A Dinsn.h295 ({typeof(x) x_ = (x); \
299 ({typeof(x) x_ = (x); \
303 ({typeof(x) x_ = (x); \
307 ({typeof(x) x_ = (x); \
314 ({typeof(x) x_ = (x); \
319 ({typeof(x) x_ = (x); \
326 ({typeof(x) x_ = (x); \
330 ({typeof(x) x_ = (x); \
341 ({typeof(x) x_ = (x); \
349 ({typeof(x) x_ = (x); RV_X(x_, RVG_SYSTEM_CSR_OFF, RVG_SYSTEM_CSR_MASK); })
[all …]
/openbmc/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_); \
/openbmc/linux/include/linux/
H A 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()
/openbmc/linux/arch/powerpc/include/asm/
H A Dpapr-sysparm.h9 #define mk_papr_sysparm(x_) ((papr_sysparm_t){ .token = x_, }) argument
H A Drtas.h113 #define rtas_fn_handle(x_) ((const rtas_fn_handle_t) { .index = x_, }) argument
/openbmc/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; \
/openbmc/u-boot/include/
H A Dusb.h284 ({ unsigned short x_ = (unsigned short)x; \
286 ((x_ & 0x00FFU) << 8) | ((x_ & 0xFF00U) >> 8)); \
289 ({ unsigned long x_ = (unsigned long)x; \
291 ((x_ & 0x000000FFUL) << 24) | \
292 ((x_ & 0x0000FF00UL) << 8) | \
293 ((x_ & 0x00FF0000UL) >> 8) | \
294 ((x_ & 0xFF000000UL) >> 24)); \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/espeak/files/
H A D0001-Fix-build-of-shared-library-on-architectures-needing.patch25 x_%.o: %.cpp
28 -I. -D LIBRARY -c -fno-exceptions $< -o x_$*.o
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/mesa-demos/
H A D0001-mesa-demos-Add-missing-data-files.patch362 + vec4 x_ = floor(j * ns.z) ;
363 + vec4 y_ = floor(j - pParam.w * x_ ) ; // mod(j,N)
365 + vec4 x = x_ *ns.x + ns.yyyy;
/openbmc/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()
/openbmc/qemu/target/arm/tcg/
H A Dsve_helper.c957 ({ __typeof(X) x_ = (X), min_ = 1ull << (sizeof(X) * 8 - 1); \ in DO_ZPZ()
958 x_ >= 0 ? x_ : x_ == min_ ? -min_ - 1 : -x_; }) in DO_ZPZ()
966 ({ __typeof(X) x_ = (X), min_ = 1ull << (sizeof(X) * 8 - 1); \
967 x_ == min_ ? -min_ - 1 : -x_; })