/Linux-v4.19/include/linux/ |
D | bitrev.h | 37 u32 __x = x; \ 38 __x = (__x >> 16) | (__x << 16); \ 39 __x = ((__x & (u32)0xFF00FF00UL) >> 8) | ((__x & (u32)0x00FF00FFUL) << 8); \ 40 __x = ((__x & (u32)0xF0F0F0F0UL) >> 4) | ((__x & (u32)0x0F0F0F0FUL) << 4); \ 41 __x = ((__x & (u32)0xCCCCCCCCUL) >> 2) | ((__x & (u32)0x33333333UL) << 2); \ 42 __x = ((__x & (u32)0xAAAAAAAAUL) >> 1) | ((__x & (u32)0x55555555UL) << 1); \ 43 __x; \ 48 u16 __x = x; \ 49 __x = (__x >> 8) | (__x << 8); \ 50 __x = ((__x & (u16)0xF0F0U) >> 4) | ((__x & (u16)0x0F0FU) << 4); \ [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 | 144 __typeof__(x) __x = (x); \ 146 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
D | kernel.h | 155 typeof(x) __x = (x); \ 156 __x - (__x % (y)); \ 168 typeof(x) __x = x; \ 172 (((__x) > 0) == ((__d) > 0))) ? \ 173 (((__x) + ((__d) / 2)) / (__d)) : \ 174 (((__x) - ((__d) / 2)) / (__d)); \ 289 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \ 295 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other) 871 __cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op)) 909 typeof(x) __x = (x); \ [all …]
|
/Linux-v4.19/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
|
/Linux-v4.19/arch/c6x/include/asm/ |
D | special_insns.h | 16 ({ unsigned int __x; \ 17 asm volatile ("mvc .s2 " #reg ",%0\n" : "=b"(__x)); __x; }) 20 do { unsigned int __x = (unsigned int)(v); \ 21 asm volatile ("mvc .s2 %0," #reg "\n" : : "b"(__x)); \ 25 do { unsigned __x, __n = (unsigned)(n); \ 30 : "=&b"(__x) : "b"(__n)); \ 34 do { unsigned __x, __n = (unsigned)(n); \ 39 : "=&b"(__x) : "b"(__n)); \ 58 ({ unsigned int __x; \ 60 "=b"(__x) : "n"(s), "n"(e), "b"(x)); \ [all …]
|
/Linux-v4.19/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00reg.h | 189 #define compile_ffs2(__x) \ argument 190 __builtin_choose_expr(((__x) & 0x1), 0, 1) 192 #define compile_ffs4(__x) \ argument 193 __builtin_choose_expr(((__x) & 0x3), \ 194 (compile_ffs2((__x))), \ 195 (compile_ffs2((__x) >> 2) + 2)) 197 #define compile_ffs8(__x) \ argument 198 __builtin_choose_expr(((__x) & 0xf), \ 199 (compile_ffs4((__x))), \ 200 (compile_ffs4((__x) >> 4) + 4)) [all …]
|
D | rt2800mmio.h | 36 #define TX_BASE_PTR(__x) (TX_BASE_PTR0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument 37 #define TX_MAX_CNT(__x) (TX_MAX_CNT0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument 38 #define TX_CTX_IDX(__x) (TX_CTX_IDX0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument 39 #define TX_DTX_IDX(__x) (TX_DTX_IDX0 + ((__x) * TX_QUEUE_REG_OFFSET)) argument
|
/Linux-v4.19/arch/x86/boot/compressed/ |
D | misc.h | 42 #define error_putstr(__x) __putstr(__x) argument 43 #define error_puthex(__x) __puthex(__x) argument 47 #define debug_putstr(__x) __putstr(__x) argument 48 #define debug_puthex(__x) __puthex(__x) argument 49 #define debug_putaddr(__x) { \ argument 50 debug_putstr(#__x ": 0x"); \ 51 debug_puthex((unsigned long)(__x)); \
|
/Linux-v4.19/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-v4.19/arch/s390/include/asm/ |
D | uaccess.h | 167 __typeof__(*(ptr)) __x = (x); \ 175 __pu_err = __put_user_fn(&__x, ptr, \ 200 unsigned char __x = 0; \ 201 __gu_err = __get_user_fn(&__x, ptr, \ 203 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 207 unsigned short __x = 0; \ 208 __gu_err = __get_user_fn(&__x, ptr, \ 210 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 214 unsigned int __x = 0; \ 215 __gu_err = __get_user_fn(&__x, ptr, \ [all …]
|
/Linux-v4.19/drivers/gpu/drm/exynos/ |
D | regs-fimc.h | 300 #define EXYNOS_CIOYSA(__x) \ argument 301 (((__x) < DEF_PP) ? \ 302 (EXYNOS_CIOYSA1 + (__x) * 4) : \ 303 (EXYNOS_CIOYSA5 + ((__x) - DEF_PP) * 4)) 304 #define EXYNOS_CIOCBSA(__x) \ argument 305 (((__x) < DEF_PP) ? \ 306 (EXYNOS_CIOCBSA1 + (__x) * 4) : \ 307 (EXYNOS_CIOCBSA5 + ((__x) - DEF_PP) * 4)) 308 #define EXYNOS_CIOCRSA(__x) \ argument 309 (((__x) < DEF_PP) ? \ [all …]
|
/Linux-v4.19/arch/sh/math-emu/ |
D | sfp-util.h | 8 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-v4.19/arch/riscv/include/asm/ |
D | uaccess.h | 133 __typeof__(x) __x; \ 150 : "+r" (err), "=&r" (__x), "=r" (__tmp) \ 153 (x) = __x; \ 269 __typeof__(*(ptr)) __x = x; \ 286 : "rJ" (__x), "i" (-EFAULT)); \ 297 u64 __x = (__typeof__((x)-(x)))(x); \ 320 : "rJ" (__x), "rJ" (__x >> 32), "i" (-EFAULT)); \
|
/Linux-v4.19/arch/parisc/include/asm/ |
D | uaccess.h | 145 __typeof__(*(ptr)) __x = (__typeof__(*(ptr)))(x); \ 148 case 1: __put_user_asm("stb", __x, ptr); break; \ 149 case 2: __put_user_asm("sth", __x, ptr); break; \ 150 case 4: __put_user_asm("stw", __x, ptr); break; \ 151 case 8: STD_USER(__x, ptr); break; \
|
/Linux-v4.19/tools/testing/selftests/timers/ |
D | raw_skew.c | 34 __typeof__(x) __x = (x); \ 36 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
/Linux-v4.19/scripts/mod/ |
D | modpost.h | 86 typeof(x) __x; \ 87 __endian(&(x), &(__x), sizeof(__x)); \ 88 __x; \
|
/Linux-v4.19/arch/arm64/include/asm/ |
D | memory.h | 233 phys_addr_t __x = (phys_addr_t)(x); \ 234 __is_lm_address(__x) ? __lm_to_phys(__x) : \ 235 __kimg_to_phys(__x); \
|
/Linux-v4.19/arch/s390/kernel/ |
D | compat_linux.h | 11 #define A(__x) ((unsigned long)((__x) & 0x7FFFFFFFUL)) argument 12 #define AA(__x) \ argument 13 ((unsigned long)(__x))
|
/Linux-v4.19/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)); \ 1286 UWtype __x; \ 1287 __x = (al) + (bl); \ 1288 (sh) = (ah) + (bh) + (__x < (al)); \ [all …]
|
/Linux-v4.19/arch/s390/kvm/ |
D | gaccess.h | 95 __typeof__(*(gra)) __x = (x); \ 100 kvm_write_guest(__vcpu->kvm, __gpa, &__x, sizeof(__x)); \
|
/Linux-v4.19/arch/nios2/lib/ |
D | memcpy.c | 39 unsigned char __x = ((unsigned char *) src_bp)[0]; \ 42 ((unsigned char *) dst_bp)[0] = __x; \
|
/Linux-v4.19/arch/x86/ia32/ |
D | sys_ia32.c | 52 #define AA(__x) ((unsigned long)(__x)) argument
|
/Linux-v4.19/arch/parisc/kernel/ |
D | signal.c | 57 #define A(__x) ((unsigned long)(__x)) argument
|