Home
last modified time | relevance | path

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

/include/linux/
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; \
A Dbitrev.h76 u32 __x = x; \
77 __builtin_constant_p(__x) ? \
79 __bitrev32(__x); \
84 u16 __x = x; \
85 __builtin_constant_p(__x) ? \
87 __bitrev16(__x); \
92 u32 __x = x; \
93 __builtin_constant_p(__x) ? \
95 __bitrev8x4(__x); \
100 u8 __x = x; \
[all …]
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)); \
164 (char)({ signed char __x = (x); __x<0?-__x:__x; }), \
170 ({ signed type __x = (x); __x < 0 ? -__x : __x; }), other)
A Dmaple_tree.h629 if (__x) { \
644 if (__x) { \
660 if (__x) { \
676 int ret = !!(__x); \
693 int ret = !!(__x); \
729 #define MT_BUG_ON(__tree, __x) BUG_ON(__x) argument
730 #define MAS_BUG_ON(__mas, __x) BUG_ON(__x) argument
731 #define MAS_WR_BUG_ON(__mas, __x) BUG_ON(__x) argument
732 #define MT_WARN_ON(__tree, __x) WARN_ON(__x) argument
733 #define MAS_WARN_ON(__mas, __x) WARN_ON(__x) argument
[all …]
A Dtimex.h144 __typeof__(x) __x = (x); \
146 __x < 0 ? -(-__x >> __s) : __x >> __s; \
A Dminmax.h177 typeof(x) __x = (x); \
179 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })
A Dmath64.h351 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/
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); \
166 unsigned int __x = 0; \
168 ptr, &__x); \
173 unsigned long long __x = 0; \
[all …]

Completed in 14 milliseconds