Lines Matching refs:hx
28 uint32_t hx, ix; in __nextupl() local
32 GET_LDOUBLE_WORDS (esx, hx, lx, x); in __nextupl()
35 if (((ix == 0x7fff) && (((hx & 0x7fffffff) | lx) != 0))) /* x is nan. */ in __nextupl()
37 if ((ix | hx | lx) == 0) in __nextupl()
46 hx += 1; in __nextupl()
48 if (hx == 0 || (esx == 0 && hx == 0x80000000)) in __nextupl()
50 if (hx == 0) in __nextupl()
54 hx |= 0x80000000; in __nextupl()
63 if (hx <= 0x80000000 && esx != 0xffff8000) in __nextupl()
66 hx = hx - 1; in __nextupl()
68 hx |= 0x80000000; in __nextupl()
71 hx -= 1; in __nextupl()
73 if (ix != 0 && hx == 0x80000000) in __nextupl()
74 hx = 0; in __nextupl()
75 if (hx == 0) in __nextupl()
77 hx -= 1; in __nextupl()
82 SET_LDOUBLE_WORDS (x, esx, hx, lx); in __nextupl()