Lines Matching refs:hx
34 uint32_t hx,hy,lx,ly; in __nextafterl() local
36 GET_LDOUBLE_WORDS(esx,hx,lx,x); in __nextafterl()
41 if(((ix==0x7fff)&&((hx&0x7fffffff)|lx)!=0) || /* x is nan */ in __nextafterl()
45 if((ix|hx|lx)==0) { /* x == 0 */ in __nextafterl()
52 if(esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))) { in __nextafterl()
55 if (ix != 0 && hx == 0x80000000) hx = 0; in __nextafterl()
56 if (hx==0) esx -= 1; in __nextafterl()
57 hx -= 1; in __nextafterl()
63 hx += 1; in __nextafterl()
64 if (hx==0) { in __nextafterl()
65 hx = 0x80000000; in __nextafterl()
71 if(esy>=0||esx>esy||((esx==esy) && (hx>hy||((hx==hy)&&(lx>ly))))){ in __nextafterl()
74 if (ix != 0 && hx == 0x80000000) hx = 0; in __nextafterl()
75 if (hx==0) esx -= 1; in __nextafterl()
76 hx -= 1; in __nextafterl()
82 hx += 1; in __nextafterl()
83 if (hx==0) { in __nextafterl()
84 hx = 0x80000000; in __nextafterl()
96 if(esy==0 && (hx & 0x80000000) == 0) { /* underflow */ in __nextafterl()
101 SET_LDOUBLE_WORDS(x,esx,hx,lx); in __nextafterl()