Lines Matching refs:hx
37 uint64_t hx, lx, uhx; in __roundevenl()
38 GET_LDOUBLE_WORDS64 (hx, lx, x); in __roundevenl()
39 uhx = hx & 0x7fffffffffffffffULL; in __roundevenl()
63 hx += lx < half_bit; in __roundevenl()
71 if (((hx & 1) | (lx & 0x7fffffffffffffffULL)) != 0) in __roundevenl()
74 hx += lx < 0x8000000000000000ULL; in __roundevenl()
89 if (((hx & (int_bit | (half_bit - 1))) | lx) != 0) in __roundevenl()
90 hx += half_bit; in __roundevenl()
91 hx &= ~(int_bit - 1); in __roundevenl()
97 hx = (hx & 0x8000000000000000ULL) | 0x3fff000000000000ULL; in __roundevenl()
103 hx &= 0x8000000000000000ULL; in __roundevenl()
106 SET_LDOUBLE_WORDS64 (x, hx, lx); in __roundevenl()