Lines Matching refs:hx
25 int64_t hx,hy,ix,iy; in nextafterl() local
28 GET_LDOUBLE_WORDS64(hx,lx,x); in nextafterl()
30 ix = hx&0x7fffffffffffffffLL; /* |x| */ in nextafterl()
42 if(hx>=0) { /* x > 0 */ in nextafterl()
43 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafterl()
44 if(lx==0) hx--; in nextafterl()
48 if(lx==0) hx++; in nextafterl()
51 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafterl()
52 if(lx==0) hx--; in nextafterl()
56 if(lx==0) hx++; in nextafterl()
59 ix = hx&0x7fff000000000000LL; in nextafterl()
62 SET_LDOUBLE_WORDS64(x,hx,lx); in nextafterl()