Lines Matching refs:lx
29 u_int32_t lx,ly; in nextafter() local
31 EXTRACT_WORDS(hx,lx,x); in nextafter()
36 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ in nextafter()
40 if((ix|lx)==0) { /* x == 0 */ in nextafter()
46 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter()
47 if(lx==0) hx -= 1; in nextafter()
48 lx -= 1; in nextafter()
50 lx += 1; in nextafter()
51 if(lx==0) hx += 1; in nextafter()
54 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafter()
55 if(lx==0) hx -= 1; in nextafter()
56 lx -= 1; in nextafter()
58 lx += 1; in nextafter()
59 if(lx==0) hx += 1; in nextafter()
67 INSERT_WORDS(y,hx,lx); in nextafter()
71 INSERT_WORDS(x,hx,lx); in nextafter()