Lines Matching refs:hx
32 int32_t hx,hy,ix,iy; in nextafter() local
35 EXTRACT_WORDS(hx,lx,x); in nextafter()
37 ix = hx&0x7fffffff; /* |x| */ in nextafter()
49 if(hx>=0) { /* x > 0 */ in nextafter()
50 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter()
51 if(lx==0) hx -= 1; in nextafter()
55 if(lx==0) hx += 1; in nextafter()
58 if(hy>=0||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 hy = hx&0x7ff00000; in nextafter()
71 INSERT_WORDS(y,hx,lx); in nextafter()
75 INSERT_WORDS(x,hx,lx); in nextafter()