Home
last modified time | relevance | path

Searched refs:__x (Results 1 – 25 of 34) sorted by relevance

12

/linux/drivers/media/dvb-frontends/
H A Dstv090x_reg.h175 #define STV090x_Px_I2CRPT(__x) (0xf12a + (__x - 1) * 0x1) argument
197 #define STV090x_GPIOxCFG(__x) (0xf141 + (__x - 1)) argument
218 #define STV090x_CSxCFG(__x) (0xf14e + __x * 0x1) argument
246 #define STV090x_AGCRFxCFG(__x) (0xf152 + (__x - 1) * 0x4) argument
256 #define STV090x_SDATxCFG(__x) (0xf153 + (__x - 1) * 0x4) argument
266 #define STV090x_SCLTxCFG(__x) (0xf154 + (__x - 1) * 0x4) argument
276 #define STV090x_DISEQCOxCFG(__x) (0xf155 + (__x - 1) * 0x4) argument
294 #define STV090x_ERRORxCFG(__x) (0xf15b + (__x - 1) * 0x5) argument
305 #define STV090x_DPNxCFG(__x) (0xf15c + (__x - 1) * 0x5) argument
316 #define STV090x_STROUTxCFG(__x) (0xf15d + (__x - 1) * 0x5) argument
[all …]
H A Dstv090x_priv.h47 #define STV090x_ADDR_OFFST(__state, __x) (( \ argument
49 STV090x_P1_##__x : \
50 STV090x_P2_##__x)
68 #define MSB(__x) ((__x >> 8) & 0xff) argument
69 #define LSB(__x) (__x & 0xff) argument
/linux/include/linux/
H A Dbitrev.h76 u32 __x = x; \
77 __builtin_constant_p(__x) ? \
78 __constant_bitrev32(__x) : \
79 __bitrev32(__x); \
84 u16 __x = x; \
85 __builtin_constant_p(__x) ? \
86 __constant_bitrev16(__x) : \
87 __bitrev16(__x); \
92 u32 __x = x; \
93 __builtin_constant_p(__x) ? \
[all …]
H A Dcnt32_to_63.h95 union cnt32_to_63 __x; \
96 __x.hi = __m_cnt_hi; \
98 __x.lo = (cnt_lo); \
99 if (unlikely((s32)(__x.hi ^ __x.lo) < 0)) \
100 __m_cnt_hi = __x.hi = (__x.hi ^ 0x80000000) + (__x.hi >> 31); \
101 __x.val; \
H A Dmath.h87 typeof(x) __x = (x); \
88 __x - (__x % (y)); \
100 typeof(x) __x = x; \
104 (((__x) > 0) == ((__d) > 0))) ? \
105 (((__x) + ((__d) / 2)) / (__d)) : \
106 (((__x) - ((__d) / 2)) / (__d)); \
169 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \
175 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other)
H A Dmaple_tree.h634 #define MT_BUG_ON(__tree, __x) do { \ argument
636 if (__x) { \
638 __func__, __LINE__, __x); \
649 #define MAS_BUG_ON(__mas, __x) do { \ argument
651 if (__x) { \
653 __func__, __LINE__, __x); \
665 #define MAS_WR_BUG_ON(__wrmas, __x) do { \ argument
667 if (__x) { \
669 __func__, __LINE__, __x); \
682 #define MT_WARN_ON(__tree, __x) ({ \ argument
[all …]
H A Dminmax.h177 typeof(x) __x = (x); \
179 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
H A Dmath64.h408 s64 __x = (dividend); \
410 ((__x > 0) == (__d > 0)) ? \
411 div_s64((__x + (__d / 2)), __d) : \
412 div_s64((__x - (__d / 2)), __d); \
/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00reg.h178 #define compile_ffs2(__x) \ argument
179 __builtin_choose_expr(((__x) & 0x1), 0, 1)
181 #define compile_ffs4(__x) \ argument
182 __builtin_choose_expr(((__x) & 0x3), \
183 (compile_ffs2((__x))), \
184 (compile_ffs2((__x) >> 2) + 2))
186 #define compile_ffs8(__x) \ argument
187 __builtin_choose_expr(((__x) & 0xf), \
188 (compile_ffs4((__x))), \
189 (compile_ffs4((__x) >> 4) + 4))
[all …]
H A Drt2800mmio.h24 #define TX_BASE_PTR(__x) (TX_BASE_PTR0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument
25 #define TX_MAX_CNT(__x) (TX_MAX_CNT0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument
26 #define TX_CTX_IDX(__x) (TX_CTX_IDX0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument
27 #define TX_DTX_IDX(__x) (TX_DTX_IDX0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument
/linux/include/asm-generic/
H A Duaccess.h106 __typeof__(*(ptr)) __x = (x); \
115 ptr, &__x); \
152 unsigned char __x = 0; \
154 ptr, &__x); \
155 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
159 unsigned short __x = 0; \
161 ptr, &__x); \
162 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
166 unsigned int __x = 0; \
168 ptr, &__x); \
[all …]
/linux/drivers/gpu/drm/exynos/
H A Dregs-fimc.h297 #define EXYNOS_CIOYSA(__x) \ argument
298 (((__x) < DEF_PP) ? \
299 (EXYNOS_CIOYSA1 + (__x) * 4) : \
300 (EXYNOS_CIOYSA5 + ((__x) - DEF_PP) * 4))
301 #define EXYNOS_CIOCBSA(__x) \ argument
302 (((__x) < DEF_PP) ? \
303 (EXYNOS_CIOCBSA1 + (__x) * 4) : \
304 (EXYNOS_CIOCBSA5 + ((__x) - DEF_PP) * 4))
305 #define EXYNOS_CIOCRSA(__x) \ argument
306 (((__x) < DEF_PP) ? \
[all …]
/linux/arch/sh/math-emu/
H A Dsfp-util.h8 UWtype __x; \
9 __x = (al) + (bl); \
10 (sh) = (ah) + (bh) + (__x < (al)); \
11 (sl) = __x; \
16 UWtype __x; \
17 __x = (al) - (bl); \
18 (sh) = (ah) - (bh) - (__x > (al)); \
19 (sl) = __x; \
/linux/arch/alpha/include/asm/
H A Drwonce.h25 __unqual_scalar_typeof(x) __x = \
26 (*(volatile typeof(__x) *)(&(x))); \
28 (typeof(x))__x; \
/linux/arch/xtensa/include/asm/
H A Duaccess.h178 u64 __x; \
179 if (unlikely(__copy_from_user(&__x, ptr, 8))) { \
183 (x) = *(__force __typeof__(*(ptr)) *)&__x; \
200 u32 __x = 0; \
216 :[err] "+r"(err_), [tmp] "=r"(cb), [x] "+r"(__x) \
218 (x_) = (__force __typeof__(*(addr_)))__x; \
/linux/tools/testing/selftests/timers/
H A Draw_skew.c32 __typeof__(x) __x = (x); \
34 __x < 0 ? -(-__x >> __s) : __x >> __s; \
/linux/arch/s390/include/asm/
H A Drwonce.h16 typeof(x) __x; \
26 __u.__x; \
/linux/lib/crypto/mpi/
H A Dlonglong.h617 } __x; \
618 __asm__ ("mulu.d %0,%1,%2" : "=r" (__x.__ll) : "r" (u), "r" (v)); \
619 (wh) = __x.__i.__h; \
620 (wl) = __x.__i.__l; \
625 } __x, __q; \
626 __x.__i.__h = (n1); __x.__i.__l = (n0); \
628 : "=r" (__q.__ll) : "r" (__x.__ll), "r" (d)); \
1252 UWtype __x; \
1253 __x = (al) + (bl); \
1254 (sh) = (ah) + (bh) + (__x < (al)); \
[all …]
/linux/arch/riscv/include/asm/
H A Dasm.h16 #define ASM_INSN_I(__x) ".insn " __x argument
18 #define ASM_INSN_I(__x) ".4byte " __x argument
/linux/arch/microblaze/include/asm/
H A Duaccess.h115 __u64 __x = 0; \
116 __gu_err = raw_copy_from_user(&__x, ptr, 8) ? \
118 (x) = (typeof(x))(typeof((x) - (x)))__x; \
/linux/tools/testing/selftests/bpf/progs/
H A Dbpf_dctcp.c17 typeof(x) __x = (x); \
19 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
/linux/arch/loongarch/include/asm/
H A Duaccess.h233 u64 __x = (__typeof__((__pu_val)-(__pu_val)))(__pu_val); \
246 : "rJ" (__x), "rJ" (__x >> 32)); \
/linux/arch/s390/kvm/
H A Dgaccess.h123 __typeof__(*(gra)) __x = (x); \
128 kvm_write_guest(__vcpu->kvm, __gpa, &__x, sizeof(__x)); \
/linux/arch/nios2/lib/
H A Dmemcpy.c39 unsigned char __x = ((unsigned char *) src_bp)[0]; \
42 ((unsigned char *) dst_bp)[0] = __x; \
/linux/arch/parisc/include/asm/
H A Duaccess.h132 __typeof__(*(__ptr)) __x = (__typeof__(*(__ptr)))(x); \
133 __put_user_internal(SR_USER, __x, __ptr); \

12