Lines Matching refs:hx
34 int32_t hx,hy,ix,iy; in nextafter() local
37 EXTRACT_WORDS(hx,lx,x); in nextafter()
39 ix = hx&0x7fffffff; /* |x| */ in nextafter()
51 if(hx>=0) { /* x > 0 */ in nextafter()
52 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter()
53 if(lx==0) hx -= 1; in nextafter()
57 if(lx==0) hx += 1; in nextafter()
60 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafter()
61 if(lx==0) hx -= 1; in nextafter()
65 if(lx==0) hx += 1; in nextafter()
68 hy = hx&0x7ff00000; in nextafter()
73 INSERT_WORDS(y,hx,lx); in nextafter()
77 INSERT_WORDS(x,hx,lx); in nextafter()