Lines Matching refs:ix
55 uint16_t hx, ix; in cospil() local
58 ix = hx & 0x7fff; in cospil()
59 INSERT_LDBL80_WORDS(ax, ix, lx); in cospil()
63 if (ix < 0x3fff) { /* |x| < 1 */ in cospil()
64 if (ix < 0x3ffd) { /* |x| < 0.25 */ in cospil()
65 if (ix < 0x3fdd) { /* |x| < 0x1p-34 */ in cospil()
72 if (ix < 0x3ffe) /* |x| < 0.5 */ in cospil()
83 if (ix < 0x403e) { /* 1 <= |x| < 0x1p63 */ in cospil()
84 FFLOORL80(x, j0, ix, lx); /* Integer part of ax. */ in cospil()
86 EXTRACT_LDBL80_WORDS(ix, lx, ax); in cospil()
88 if (ix < 0x3ffe) { /* |x| < 0.5 */ in cospil()
89 if (ix < 0x3ffd) /* |x| < 0.25 */ in cospil()
90 c = ix == 0 ? 1 : __kernel_cospil(ax); in cospil()
112 if (ix >= 0x7fff) in cospil()
120 RETURNI(ix >= 0x403f ? 1 : ((lx & 1) ? -1 : 1)); in cospil()