Lines Matching refs:__x
85 typeof(x) __x = (x); \
86 __x - (__x % (y)); \
97 typeof(x) __x = x; \
100 ((typeof(divisor))-1) > 0 || (__x) > 0) ? \
101 (((__x) + ((__d) / 2)) / (__d)) : \
102 (((__x) - ((__d) / 2)) / (__d)); \
155 long __x = (x); \
156 ret = (__x < 0) ? -__x : __x; \
158 int __x = (x); \
159 ret = (__x < 0) ? -__x : __x; \
165 s64 __x = (x); \
166 (__x < 0) ? -__x : __x; \
195 typeof(x) __x = (x); \
197 __x == 0 ? __y : ((__y == 0) ? __x : min(__x, __y)); })