Lines Matching refs:lx
33 u_int32_t lx,ly; in nextafter() local
35 EXTRACT_WORDS(hx,lx,x); in nextafter()
40 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ in nextafter()
44 if((ix|lx)==0) { /* x == 0 */ in nextafter()
50 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter()
51 if(lx==0) hx -= 1; in nextafter()
52 lx -= 1; in nextafter()
54 lx += 1; in nextafter()
55 if(lx==0) hx += 1; in nextafter()
58 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafter()
59 if(lx==0) hx -= 1; in nextafter()
60 lx -= 1; in nextafter()
62 lx += 1; in nextafter()
63 if(lx==0) hx += 1; in nextafter()
71 INSERT_WORDS(y,hx,lx); in nextafter()
75 INSERT_WORDS(x,hx,lx); in nextafter()