Searched refs:__x (Results 1 – 10 of 10) sorted by relevance
/linux-4.19.296/drivers/media/dvb-frontends/ |
D | stv090x_reg.h | 187 #define STV090x_Px_I2CRPT(__x) (0xf12a + (__x - 1) * 0x1) argument 209 #define STV090x_GPIOxCFG(__x) (0xf141 + (__x - 1)) argument 230 #define STV090x_CSxCFG(__x) (0xf14e + __x * 0x1) argument 258 #define STV090x_AGCRFxCFG(__x) (0xf152 + (__x - 1) * 0x4) argument 268 #define STV090x_SDATxCFG(__x) (0xf153 + (__x - 1) * 0x4) argument 278 #define STV090x_SCLTxCFG(__x) (0xf154 + (__x - 1) * 0x4) argument 288 #define STV090x_DISEQCOxCFG(__x) (0xf155 + (__x - 1) * 0x4) argument 306 #define STV090x_ERRORxCFG(__x) (0xf15b + (__x - 1) * 0x5) argument 317 #define STV090x_DPNxCFG(__x) (0xf15c + (__x - 1) * 0x5) argument 328 #define STV090x_STROUTxCFG(__x) (0xf15d + (__x - 1) * 0x5) argument [all …]
|
D | stv090x_priv.h | 59 #define STV090x_ADDR_OFFST(__state, __x) (( \ argument 61 STV090x_P1_##__x : \ 62 STV090x_P2_##__x) 80 #define MSB(__x) ((__x >> 8) & 0xff) argument 81 #define LSB(__x) (__x & 0xff) argument
|
D | stv090x.c | 687 static inline s32 comp2(s32 __x, s32 __width) in comp2() argument 690 return __x; in comp2() 692 return (__x >= (1 << (__width - 1))) ? (__x - (1 << __width)) : __x; in comp2()
|
/linux-4.19.296/include/linux/ |
D | bitrev.h | 76 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 …]
|
D | cnt32_to_63.h | 98 union cnt32_to_63 __x; \ 99 __x.hi = __m_cnt_hi; \ 101 __x.lo = (cnt_lo); \ 102 if (unlikely((s32)(__x.hi ^ __x.lo) < 0)) \ 103 __m_cnt_hi = __x.hi = (__x.hi ^ 0x80000000) + (__x.hi >> 31); \ 104 __x.val; \
|
D | timex.h | 152 __typeof__(x) __x = (x); \ 154 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
D | kernel.h | 156 typeof(x) __x = (x); \ 157 __x - (__x % (y)); \ 169 typeof(x) __x = x; \ 173 (((__x) > 0) == ((__d) > 0))) ? \ 174 (((__x) + ((__d) / 2)) / (__d)) : \ 175 (((__x) - ((__d) / 2)) / (__d)); \ 290 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \ 296 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other) 873 __cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op)) 911 typeof(x) __x = (x); \ [all …]
|
/linux-4.19.296/include/asm-generic/ |
D | uaccess.h | 59 __typeof__(*(ptr)) __x = (x); \ 68 ptr, &__x); \ 105 unsigned char __x = 0; \ 107 ptr, &__x); \ 108 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 112 unsigned short __x = 0; \ 114 ptr, &__x); \ 115 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 119 unsigned int __x = 0; \ 121 ptr, &__x); \ [all …]
|
/linux-4.19.296/lib/mpi/ |
D | longlong.h | 617 } __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-4.19.296/drivers/media/v4l2-core/ |
D | v4l2-compat-ioctl32.c | 57 #define get_user_cast(__x, __ptr) \ argument 59 get_user(__x, (typeof(*__ptr) __user *)(__ptr)); \ 74 #define put_user_force(__x, __ptr) \ argument 76 put_user((typeof(*__x) __force *)(__x), __ptr); \
|