Searched refs:__x (Results 1 – 8 of 8) sorted by relevance
| /include/linux/ |
| 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 | 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 | math.h | 87 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)); \ 164 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \ 170 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other)
|
| D | maple_tree.h | 623 #define MT_BUG_ON(__tree, __x) do { \ argument 625 if (__x) { \ 627 __func__, __LINE__, __x); \ 638 #define MAS_BUG_ON(__mas, __x) do { \ argument 640 if (__x) { \ 642 __func__, __LINE__, __x); \ 654 #define MAS_WR_BUG_ON(__wrmas, __x) do { \ argument 656 if (__x) { \ 658 __func__, __LINE__, __x); \ 671 #define MT_WARN_ON(__tree, __x) ({ \ argument [all …]
|
| D | timex.h | 152 __typeof__(x) __x = (x); \ 154 __x < 0 ? -(-__x >> __s) : __x >> __s; \
|
| D | minmax.h | 177 typeof(x) __x = (x); \ 179 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
|
| D | math64.h | 351 s64 __x = (dividend); \ 353 ((__x > 0) == (__d > 0)) ? \ 354 div_s64((__x + (__d / 2)), __d) : \ 355 div_s64((__x - (__d / 2)), __d); \
|
| /include/asm-generic/ |
| D | uaccess.h | 106 __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 …]
|