Lines Matching refs:ix
35 uint64_t hx, lx, ix, ixl; in __frexpl() local
43 ix = 0x7fffffffffffffffULL & hx; in __frexpl()
45 if (ix >= 0x7ff0000000000000ULL || ix == 0) in __frexpl()
51 expon = ix >> 52; in __frexpl()
58 if (sizeof (ix) == sizeof (long)) in __frexpl()
59 cnt = __builtin_clzl (ix); in __frexpl()
60 else if ((ix >> 32) != 0) in __frexpl()
61 cnt = __builtin_clzl ((long) (ix >> 32)); in __frexpl()
63 cnt = __builtin_clzl ((long) ix) + 32; in __frexpl()
66 ix <<= cnt + 1; in __frexpl()
69 ix &= 0x000fffffffffffffULL; in __frexpl()
71 hx |= (1022LL << 52) | ix; in __frexpl()
78 if (ix == 0 in __frexpl()