Lines Matching full:signbit
22 #define SIGNBIT (uint32_t)0x80000000
149 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT))
157 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) {
159 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
167 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) {
169 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
178 res = ~SIGNBIT;
181 res = SIGNBIT;