/Linux-v5.4/drivers/media/dvb-frontends/ |
D | stv090x_reg.h | 175 #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 …]
|
D | stv090x_priv.h | 47 #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-v5.4/arch/c6x/include/asm/ |
D | special_insns.h | 13 ({ unsigned int __x; \ 14 asm volatile ("mvc .s2 " #reg ",%0\n" : "=b"(__x)); __x; }) 17 do { unsigned int __x = (unsigned int)(v); \ 18 asm volatile ("mvc .s2 %0," #reg "\n" : : "b"(__x)); \ 22 do { unsigned __x, __n = (unsigned)(n); \ 27 : "=&b"(__x) : "b"(__n)); \ 31 do { unsigned __x, __n = (unsigned)(n); \ 36 : "=&b"(__x) : "b"(__n)); \ 55 ({ unsigned int __x; \ 57 "=b"(__x) : "n"(s), "n"(e), "b"(x)); \ [all …]
|
/Linux-v5.4/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 | 95 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; \
|
D | timex.h | 144 __typeof__(x) __x = (x); \ 146 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
D | kernel.h | 131 typeof(x) __x = (x); \ 132 __x - (__x % (y)); \ 144 typeof(x) __x = x; \ 148 (((__x) > 0) == ((__d) > 0))) ? \ 149 (((__x) + ((__d) / 2)) / (__d)) : \ 150 (((__x) - ((__d) / 2)) / (__d)); \ 284 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \ 290 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other) 868 __cmp_once(x, y, __UNIQUE_ID(__x), __UNIQUE_ID(__y), op)) 906 typeof(x) __x = (x); \ [all …]
|
/Linux-v5.4/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00reg.h | 178 #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 …]
|
D | rt2800mmio.h | 24 #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-v5.4/arch/x86/boot/compressed/ |
D | misc.h | 45 #define error_putstr(__x) __putstr(__x) argument 46 #define error_puthex(__x) __puthex(__x) argument 50 #define debug_putstr(__x) __putstr(__x) argument 51 #define debug_puthex(__x) __puthex(__x) argument 52 #define debug_putaddr(__x) { \ argument 53 debug_putstr(#__x ": 0x"); \ 54 debug_puthex((unsigned long)(__x)); \
|
/Linux-v5.4/arch/s390/include/asm/ |
D | uaccess.h | 168 __typeof__(*(ptr)) __x = (x); \ 176 __pu_err = __put_user_fn(&__x, ptr, \ 201 unsigned char __x = 0; \ 202 __gu_err = __get_user_fn(&__x, ptr, \ 204 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 208 unsigned short __x = 0; \ 209 __gu_err = __get_user_fn(&__x, ptr, \ 211 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 215 unsigned int __x = 0; \ 216 __gu_err = __get_user_fn(&__x, ptr, \ [all …]
|
/Linux-v5.4/include/asm-generic/ |
D | uaccess.h | 114 __typeof__(*(ptr)) __x = (x); \ 123 ptr, &__x); \ 160 unsigned char __x = 0; \ 162 ptr, &__x); \ 163 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 167 unsigned short __x = 0; \ 169 ptr, &__x); \ 170 (x) = *(__force __typeof__(*(ptr)) *) &__x; \ 174 unsigned int __x = 0; \ 176 ptr, &__x); \ [all …]
|
/Linux-v5.4/drivers/gpu/drm/exynos/ |
D | regs-fimc.h | 297 #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-v5.4/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-v5.4/arch/nds32/include/asm/ |
D | sfp-machine.h | 114 UWtype __x; \ 115 __x = (al) + (bl); \ 116 (sh) = (ah) + (bh) + (__x < (al)); \ 117 (sl) = __x; \ 122 UWtype __x; \ 123 __x = (al) - (bl); \ 124 (sh) = (ah) - (bh) - (__x > (al)); \ 125 (sl) = __x; \
|
/Linux-v5.4/arch/riscv/include/asm/ |
D | uaccess.h | 108 __typeof__(x) __x; \ 125 : "+r" (err), "=&r" (__x), "=r" (__tmp) \ 128 (x) = __x; \ 244 __typeof__(*(ptr)) __x = x; \ 261 : "rJ" (__x), "i" (-EFAULT)); \ 272 u64 __x = (__typeof__((x)-(x)))(x); \ 295 : "rJ" (__x), "rJ" (__x >> 32), "i" (-EFAULT)); \
|
/Linux-v5.4/arch/parisc/include/asm/ |
D | uaccess.h | 144 __typeof__(*(ptr)) __x = (__typeof__(*(ptr)))(x); \ 147 case 1: __put_user_asm("stb", __x, ptr); break; \ 148 case 2: __put_user_asm("sth", __x, ptr); break; \ 149 case 4: __put_user_asm("stw", __x, ptr); break; \ 150 case 8: STD_USER(__x, ptr); break; \
|
/Linux-v5.4/arch/xtensa/include/asm/ |
D | uaccess.h | 202 u64 __x; \ 203 if (unlikely(__copy_from_user(&__x, ptr, 8))) { \ 207 (x) = *(__force __typeof__((ptr)))&__x; \ 222 u32 __x = 0; \ 238 :[err] "+r"(err_), [tmp] "=r"(cb), [x] "+r"(__x) \ 240 (x_) = (__force __typeof__(*(addr_)))__x; \
|
/Linux-v5.4/tools/testing/selftests/timers/ |
D | raw_skew.c | 34 __typeof__(x) __x = (x); \ 36 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
/Linux-v5.4/scripts/mod/ |
D | modpost.h | 86 typeof(x) __x; \ 87 __endian(&(x), &(__x), sizeof(__x)); \ 88 __x; \
|
/Linux-v5.4/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-v5.4/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-v5.4/drivers/gpu/drm/i915/ |
D | i915_gem_gtt.h | 251 ({ type __x = (type)(x); expr; }), \ 255 __px_choose_expr(px, struct i915_page_dma *, __x, \ 256 __px_choose_expr(px, struct i915_page_scratch *, &__x->base, \ 257 __px_choose_expr(px, struct i915_page_table *, &__x->base, \ 258 __px_choose_expr(px, struct i915_page_directory *, &__x->pt.base, \ 263 __px_choose_expr(px, struct i915_page_table *, __x, \ 264 __px_choose_expr(px, struct i915_page_directory *, &__x->pt, \
|
/Linux-v5.4/arch/arm64/include/asm/ |
D | memory.h | 261 phys_addr_t __x = (phys_addr_t)(__tag_reset(x)); \ 262 __is_lm_address(__x) ? __lm_to_phys(__x) : __kimg_to_phys(__x); \
|
/Linux-v5.4/arch/s390/kvm/ |
D | gaccess.h | 95 __typeof__(*(gra)) __x = (x); \ 100 kvm_write_guest(__vcpu->kvm, __gpa, &__x, sizeof(__x)); \
|