Lines Matching refs:hx
26 int32_t hx,hy,ix,iy; in nextafterf() local
28 GET_FLOAT_WORD(hx,x); in nextafterf()
30 ix = hx&0x7fffffff; /* |x| */ in nextafterf()
42 if(hx>=0) { /* x > 0 */ in nextafterf()
43 if(hx>hy) { /* x > y, x -= ulp */ in nextafterf()
44 hx -= 1; in nextafterf()
46 hx += 1; in nextafterf()
49 if(hy>=0||hx>hy){ /* x < y, x -= ulp */ in nextafterf()
50 hx -= 1; in nextafterf()
52 hx += 1; in nextafterf()
55 hy = hx&0x7f800000; in nextafterf()
60 SET_FLOAT_WORD(y,hx); in nextafterf()
64 SET_FLOAT_WORD(x,hx); in nextafterf()