Lines Matching refs:ix
78 uint16_t hx, ix; in tanpil() local
81 ix = hx & 0x7fff; in tanpil()
82 INSERT_LDBL80_WORDS(ax, ix, lx); in tanpil()
86 if (ix < 0x3fff) { /* |x| < 1 */ in tanpil()
87 if (ix < 0x3ffe) { /* |x| < 0.5 */ in tanpil()
88 if (ix < 0x3fdd) { /* |x| < 0x1p-34 */ in tanpil()
107 if (ix < 0x403e) { /* 1 <= |x| < 0x1p63 */ in tanpil()
108 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ in tanpil()
111 EXTRACT_LDBL80_WORDS(ix, lx, ax); in tanpil()
113 if (ix < 0x3ffe) /* |x| < 0.5 */ in tanpil()
114 t = ix == 0 ? copysignl(0, odd) : __kernel_tanpil(ax); in tanpil()
123 if (ix >= 0x7fff) in tanpil()
131 t = ix >= 0x403f ? 0 : (copysignl(0, (lx & 1) ? -1 : 1)); in tanpil()