Lines Matching refs:lx
38 uint32_t lx,ly; in __nextafter() local
40 EXTRACT_WORDS(hx,lx,x); in __nextafter()
45 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ in __nextafter()
49 if((ix|lx)==0) { /* x == 0 */ in __nextafter()
58 if(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()
66 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in __nextafter()
67 if(lx==0) hx -= 1; in __nextafter()
68 lx -= 1; in __nextafter()
70 lx += 1; in __nextafter()
71 if(lx==0) hx += 1; in __nextafter()
85 INSERT_WORDS(x,hx,lx); in __nextafter()