Lines Matching refs:hx
28 int32_t hx,hy,ix,iy; in __nextafterf() local
30 GET_FLOAT_WORD(hx,x); in __nextafterf()
32 ix = hx&0x7fffffff; /* |x| */ in __nextafterf()
47 if(hx>=0) { /* x > 0 */ in __nextafterf()
48 if(hx>hy) { /* x > y, x -= ulp */ in __nextafterf()
49 hx -= 1; in __nextafterf()
51 hx += 1; in __nextafterf()
54 if(hy>=0||hx>hy){ /* x < y, x -= ulp */ in __nextafterf()
55 hx -= 1; in __nextafterf()
57 hx += 1; in __nextafterf()
60 hy = hx&0x7f800000; in __nextafterf()
71 SET_FLOAT_WORD(x,hx); in __nextafterf()