Lines Matching refs:lx
59 __uint32_t lx,ly; in nextafter64() local
61 EXTRACT_WORDS(hx,lx,x); in nextafter64()
66 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */ in nextafter64()
70 if((ix|lx)==0) { /* x == 0 */ in nextafter64()
76 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in nextafter64()
77 if(lx==0) hx -= 1; in nextafter64()
78 lx -= 1; in nextafter64()
80 lx += 1; in nextafter64()
81 if(lx==0) hx += 1; in nextafter64()
84 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in nextafter64()
85 if(lx==0) hx -= 1; in nextafter64()
86 lx -= 1; in nextafter64()
88 lx += 1; in nextafter64()
89 if(lx==0) hx += 1; in nextafter64()
95 INSERT_WORDS(x,hx,lx); in nextafter64()