Lines Matching refs:__b
68 typeof(b) __b = (b); \
70 (void) (&__a == &__b); \
72 __builtin_add_overflow(__a, __b, __d); \
77 typeof(b) __b = (b); \
79 (void) (&__a == &__b); \
81 __builtin_sub_overflow(__a, __b, __d); \
86 typeof(b) __b = (b); \
88 (void) (&__a == &__b); \
90 __builtin_mul_overflow(__a, __b, __d); \
99 typeof(b) __b = (b); \
101 (void) (&__a == &__b); \
103 *__d = __a + __b; \
108 typeof(b) __b = (b); \
110 (void) (&__a == &__b); \
112 *__d = __a - __b; \
113 __a < __b; \
120 typeof(b) __b = (b); \
122 (void) (&__a == &__b); \
124 *__d = __a * __b; \
125 __builtin_constant_p(__b) ? \
126 __b > 0 && __a > type_max(typeof(__a)) / __b : \
127 __a > 0 && __b > type_max(typeof(__b)) / __a; \
148 typeof(b) __b = (b); \
150 (void) (&__a == &__b); \
152 *__d = (u64)__a + (u64)__b; \
153 (((~(__a ^ __b)) & (*__d ^ __a)) \
164 typeof(b) __b = (b); \
166 (void) (&__a == &__b); \
168 *__d = (u64)__a - (u64)__b; \
169 ((((__a ^ __b)) & (*__d ^ __a)) \
191 typeof(b) __b = (b); \
195 (void) (&__a == &__b); \
197 *__d = (u64)__a * (u64)__b; \
198 (__b > 0 && (__a > __tmax/__b || __a < __tmin/__b)) || \
199 (__b < (typeof(__b))-1 && (__a > __tmin/__b || __a < __tmax/__b)) || \
200 (__b == (typeof(__b))-1 && __a == __tmin); \