Lines Matching refs:lx
34 uint32_t hx, lx; in __roundevenl() local
35 GET_LDOUBLE_WORDS (se, hx, lx, x); in __roundevenl()
54 if ((lx & (int_bit | (half_bit - 1))) != 0) in __roundevenl()
57 lx += half_bit; in __roundevenl()
58 if (lx < half_bit) in __roundevenl()
68 lx &= ~(int_bit - 1); in __roundevenl()
74 if (((hx & 1) | (lx & 0x7fffffff)) != 0) in __roundevenl()
76 lx += 0x80000000; in __roundevenl()
77 if (lx < 0x80000000) in __roundevenl()
87 lx = 0; in __roundevenl()
98 if (((hx & (int_bit | (half_bit - 1))) | lx) != 0) in __roundevenl()
108 lx = 0; in __roundevenl()
110 else if (exponent == BIAS - 1 && (hx > 0x80000000 || lx != 0)) in __roundevenl()
115 lx = 0; in __roundevenl()
122 lx = 0; in __roundevenl()
124 SET_LDOUBLE_WORDS (x, se, hx, lx); in __roundevenl()