Lines Matching refs:hx
27 int32_t hx,hy,ix,iy; in nextafterf() local
29 GET_FLOAT_WORD(hx,x); in nextafterf()
31 ix = hx&0x7fffffff; /* |x| */ in nextafterf()
43 if(hx>=0) { /* x > 0 */ in nextafterf()
44 if(hx>hy) { /* x > y, x -= ulp */ in nextafterf()
45 hx -= 1; in nextafterf()
47 hx += 1; in nextafterf()
50 if(hy>=0||hx>hy){ /* x < y, x -= ulp */ in nextafterf()
51 hx -= 1; in nextafterf()
53 hx += 1; in nextafterf()
56 hy = hx&0x7f800000; in nextafterf()
61 SET_FLOAT_WORD(y,hx); in nextafterf()
65 SET_FLOAT_WORD(x,hx); in nextafterf()