Lines Matching refs:__b
51 typeof(b) __b = (b); \
53 (void) (&__a == &__b); \
55 __builtin_add_overflow(__a, __b, __d); \
60 typeof(b) __b = (b); \
62 (void) (&__a == &__b); \
64 __builtin_sub_overflow(__a, __b, __d); \
69 typeof(b) __b = (b); \
71 (void) (&__a == &__b); \
73 __builtin_mul_overflow(__a, __b, __d); \
82 typeof(b) __b = (b); \
84 (void) (&__a == &__b); \
86 *__d = __a + __b; \
91 typeof(b) __b = (b); \
93 (void) (&__a == &__b); \
95 *__d = __a - __b; \
96 __a < __b; \
103 typeof(b) __b = (b); \
105 (void) (&__a == &__b); \
107 *__d = __a * __b; \
108 __builtin_constant_p(__b) ? \
109 __b > 0 && __a > type_max(typeof(__a)) / __b : \
110 __a > 0 && __b > type_max(typeof(__b)) / __a; \
131 typeof(b) __b = (b); \
133 (void) (&__a == &__b); \
135 *__d = (u64)__a + (u64)__b; \
136 (((~(__a ^ __b)) & (*__d ^ __a)) \
147 typeof(b) __b = (b); \
149 (void) (&__a == &__b); \
151 *__d = (u64)__a - (u64)__b; \
152 ((((__a ^ __b)) & (*__d ^ __a)) \
174 typeof(b) __b = (b); \
178 (void) (&__a == &__b); \
180 *__d = (u64)__a * (u64)__b; \
181 (__b > 0 && (__a > __tmax/__b || __a < __tmin/__b)) || \
182 (__b < (typeof(__b))-1 && (__a > __tmin/__b || __a < __tmax/__b)) || \
183 (__b == (typeof(__b))-1 && __a == __tmin); \