Lines Matching refs:__x
86 typeof(x) __x = (x); \
87 __x - (__x % (y)); \
98 typeof(x) __x = x; \
101 ((typeof(divisor))-1) > 0 || (__x) > 0) ? \
102 (((__x) + ((__d) / 2)) / (__d)) : \
103 (((__x) - ((__d) / 2)) / (__d)); \
212 long __x = (x); \
213 ret = (__x < 0) ? -__x : __x; \
215 int __x = (x); \
216 ret = (__x < 0) ? -__x : __x; \
222 s64 __x = (x); \
223 (__x < 0) ? -__x : __x; \
741 typeof(x) __x = (x); \
743 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })