Lines Matching refs:hx
37 int32_t hx,hy,ix,iy; in __nextafter() local
40 EXTRACT_WORDS(hx,lx,x); in __nextafter()
42 ix = hx&0x7fffffff; /* |x| */ in __nextafter()
57 if(hx>=0) { /* x > 0 */ in __nextafter()
58 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in __nextafter()
59 if(lx==0) hx -= 1; in __nextafter()
63 if(lx==0) hx += 1; in __nextafter()
66 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in __nextafter()
67 if(lx==0) hx -= 1; in __nextafter()
71 if(lx==0) hx += 1; in __nextafter()
74 hy = hx&0x7ff00000; in __nextafter()
85 INSERT_WORDS(x,hx,lx); in __nextafter()