Lines Matching refs:hx

36 	int32_t n,hx,hy,hz,ix,iy,sx,i;  in __strong_alias()  local
39 EXTRACT_WORDS(hx,lx,x); in __strong_alias()
41 sx = hx&0x80000000; /* sign of x */ in __strong_alias()
42 hx ^=sx; /* |x| */ in __strong_alias()
46 if((hy|ly)==0||(hx>=0x7ff00000)|| /* y=0,or x not finite */ in __strong_alias()
49 if(hx<=hy) { in __strong_alias()
50 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */ in __strong_alias()
56 if(hx<0x00100000) { /* subnormal x */ in __strong_alias()
57 if(hx==0) { in __strong_alias()
60 for (ix = -1022,i=(hx<<11); i>0; i<<=1) ix -=1; in __strong_alias()
62 } else ix = (hx>>20)-1023; in __strong_alias()
75 hx = 0x00100000|(0x000fffff&hx); in __strong_alias()
79 hx = (hx<<n)|(lx>>(32-n)); in __strong_alias()
82 hx = lx<<(n-32); in __strong_alias()
102 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __strong_alias()
103 if(hz<0){hx = hx+hx+(lx>>31); lx = lx+lx;} in __strong_alias()
107 hx = hz+hz+(lz>>31); lx = lz+lz; in __strong_alias()
110 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1; in __strong_alias()
111 if(hz>=0) {hx=hz;lx=lz;} in __strong_alias()
114 if((hx|lx)==0) /* return sign(x)*0 */ in __strong_alias()
116 while(hx<0x00100000) { /* normalize x */ in __strong_alias()
117 hx = hx+hx+(lx>>31); lx = lx+lx; in __strong_alias()
121 hx = ((hx-0x00100000)|((iy+1023)<<20)); in __strong_alias()
122 INSERT_WORDS(x,hx|sx,lx); in __strong_alias()
126 lx = (lx>>n)|((u_int32_t)hx<<(32-n)); in __strong_alias()
127 hx >>= n; in __strong_alias()
129 lx = (hx<<(32-n))|(lx>>n); hx = sx; in __strong_alias()
131 lx = hx>>(n-32); hx = sx; in __strong_alias()
133 INSERT_WORDS(x,hx|sx,lx); in __strong_alias()