Lines Matching refs:hx
34 int64_t hx,hy,ix,iy; in __nextafterl() local
37 GET_LDOUBLE_WORDS64(hx,lx,x); in __nextafterl()
39 ix = hx&0x7fffffffffffffffLL; /* |x| */ in __nextafterl()
54 if(hx>=0) { /* x > 0 */ in __nextafterl()
55 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in __nextafterl()
56 if(lx==0) hx--; in __nextafterl()
60 if(lx==0) hx++; in __nextafterl()
63 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in __nextafterl()
64 if(lx==0) hx--; in __nextafterl()
68 if(lx==0) hx++; in __nextafterl()
71 hy = hx&0x7fff000000000000LL; in __nextafterl()
82 SET_LDOUBLE_WORDS64(x,hx,lx); in __nextafterl()