Lines Matching refs:__b
57 typeof(b) __b = (b); \
59 (void) (&__a == &__b); \
61 __builtin_add_overflow(__a, __b, __d); \
66 typeof(b) __b = (b); \
68 (void) (&__a == &__b); \
70 __builtin_sub_overflow(__a, __b, __d); \
75 typeof(b) __b = (b); \
77 (void) (&__a == &__b); \
79 __builtin_mul_overflow(__a, __b, __d); \
88 typeof(b) __b = (b); \
90 (void) (&__a == &__b); \
92 *__d = __a + __b; \
97 typeof(b) __b = (b); \
99 (void) (&__a == &__b); \
101 *__d = __a - __b; \
102 __a < __b; \
109 typeof(b) __b = (b); \
111 (void) (&__a == &__b); \
113 *__d = __a * __b; \
114 __builtin_constant_p(__b) ? \
115 __b > 0 && __a > type_max(typeof(__a)) / __b : \
116 __a > 0 && __b > type_max(typeof(__b)) / __a; \
137 typeof(b) __b = (b); \
139 (void) (&__a == &__b); \
141 *__d = (u64)__a + (u64)__b; \
142 (((~(__a ^ __b)) & (*__d ^ __a)) \
153 typeof(b) __b = (b); \
155 (void) (&__a == &__b); \
157 *__d = (u64)__a - (u64)__b; \
158 ((((__a ^ __b)) & (*__d ^ __a)) \
180 typeof(b) __b = (b); \
184 (void) (&__a == &__b); \
186 *__d = (u64)__a * (u64)__b; \
187 (__b > 0 && (__a > __tmax/__b || __a < __tmin/__b)) || \
188 (__b < (typeof(__b))-1 && (__a > __tmin/__b || __a < __tmax/__b)) || \
189 (__b == (typeof(__b))-1 && __a == __tmin); \