Lines Matching refs:ix
47 uint32_t ix, j0; in cospif() local
49 GET_FLOAT_WORD(ix, x); in cospif()
50 ix = ix & 0x7fffffff; in cospif()
51 SET_FLOAT_WORD(ax, ix); in cospif()
53 if (ix < 0x3f800000) { /* |x| < 1 */ in cospif()
54 if (ix < 0x3e800000) { /* |x| < 0.25 */ in cospif()
55 if (ix < 0x38800000) { /* |x| < 0x1p-14 */ in cospif()
63 if (ix < 0x3f000000) /* |x| < 0.5 */ in cospif()
65 else if (ix < 0x3f400000) { /* |x| < 0.75 */ in cospif()
66 if (ix == 0x3f000000) in cospif()
74 if (ix < 0x4b000000) { /* 1 <= |x| < 0x1p23 */ in cospif()
75 FFLOORF(x, j0, ix); /* Integer part of ax. */ in cospif()
77 GET_FLOAT_WORD(ix, ax); in cospif()
79 if (ix < 0x3f000000) { /* |x| < 0.5 */ in cospif()
80 if (ix < 0x3e800000) /* |x| < 0.25 */ in cospif()
81 c = ix == 0 ? 1 : __kernel_cospif(ax); in cospif()
85 if (ix < 0x3f400000) { /* |x| < 0.75 */ in cospif()
86 if (ix == 0x3f000000) in cospif()
98 if (ix >= 0x7f800000) in cospif()
106 return (ix < 0x4b800000 ? ((ix & 1) ? -1 : 1) : 1); in cospif()