Lines Matching refs:lx
35 uint64_t lx,ly; in __nextafterl() local
37 GET_LDOUBLE_WORDS64(hx,lx,x); in __nextafterl()
42 if(((ix>=0x7fff000000000000LL)&&((ix-0x7fff000000000000LL)|lx)!=0) || /* x is nan */ in __nextafterl()
46 if((ix|lx)==0) { /* x == 0 */ in __nextafterl()
55 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in __nextafterl()
56 if(lx==0) hx--; in __nextafterl()
57 lx--; in __nextafterl()
59 lx++; in __nextafterl()
60 if(lx==0) hx++; in __nextafterl()
63 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in __nextafterl()
64 if(lx==0) hx--; in __nextafterl()
65 lx--; in __nextafterl()
67 lx++; in __nextafterl()
68 if(lx==0) hx++; in __nextafterl()
82 SET_LDOUBLE_WORDS64(x,hx,lx); in __nextafterl()