Lines Matching refs:ha
58 int32_t j,k,ha,hb; in __ieee754_hypot() local
60 GET_HIGH_WORD(ha,x); in __ieee754_hypot()
61 ha &= 0x7fffffff; in __ieee754_hypot()
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypot()
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in __ieee754_hypot()
69 if(ha > 0x5f300000) { /* a>2**500 */ in __ieee754_hypot()
70 if(ha >= 0x7ff00000) { /* Inf or NaN */ in __ieee754_hypot()
75 if(((ha&0xfffff)|low)==0) w = a; in __ieee754_hypot()
81 ha -= 0x25800000; hb -= 0x25800000; k += 600; in __ieee754_hypot()
82 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
96 ha += 0x25800000; /* a *= 2^600 */ in __ieee754_hypot()
99 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
107 SET_HIGH_WORD(t1,ha); in __ieee754_hypot()
116 SET_HIGH_WORD(t1,ha+0x00100000); in __ieee754_hypot()