HomeSort by relevance Sort by last modified time
    Searched full:expman (Results 1 - 1 of 1) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_atanl.c 39 int32_t expman; local
53 expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff);
54 if (expman < ((BIAS - 2) << 8) + 0xc0) { /* |x| < 0.4375 */
61 if (expman < (BIAS << 8) + 0x30) { /* |x| < 1.1875 */
62 if (expman < ((BIAS - 1) << 8) + 0x60) { /* 7/16 <=|x|<11/16 */
68 if (expman < ((BIAS + 1) << 8) + 0x38) { /* |x| < 2.4375 */

Completed in 97 milliseconds