Home | History | Annotate | Download | only in src

Lines Matching defs:hx

30 	int32_t hx,lx,ix;
32 EXTRACT_WORDS(hx,lx,x);
33 hx &= 0x7fffffff;
34 if(hx<0x00100000) {
35 if((hx|lx)==0)
38 if(hx==0) {
41 for (ix = -1022,hx<<=11; hx>0; hx<<=1) ix -=1;
45 else if (hx<0x7ff00000) return (hx>>20)-1023;
46 else if (hx>0x7ff00000 || lx!=0) return FP_ILOGBNAN;