Home | History | Annotate | Download | only in base

Lines Matching defs:sign

495  *              it also indicates the *sign* of the result.
1048 m = ((hy >> 31) & 1) | ((hx >> 30) & 2); /* 2*sign(x)+sign(y) */
1266 xsb = (hx >> 31) & 1; /* sign bit of x */
2018 xsb = hx & 0x80000000; /* sign bit of x */
2130 uint32_t sign;
2134 sign = hx & 0x80000000; /* sign= sign(x) */
2135 hx ^= sign;
2158 INSERT_WORDS(t, sign | ((high & 0x7fffffff) / 3 + B2), 0);
2160 INSERT_WORDS(t, sign | (hx / 3 + B1), 0);