Lines Matching refs:hb
54 int32_t j,k,ha,hb; in hypot() local
58 GET_HIGH_WORD(hb,y); in hypot()
59 hb &= 0x7fffffff; in hypot()
60 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypot()
63 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in hypot()
73 if(((hb^0x7ff00000)|low)==0) w = b; in hypot()
77 ha -= 0x25800000; hb -= 0x25800000; k += 600; in hypot()
79 SET_HIGH_WORD(b,hb); in hypot()
81 if(hb < 0x20b00000) { /* b < 2**-500 */ in hypot()
82 if(hb <= 0x000fffff) { /* subnormal b or 0 */ in hypot()
85 if((hb|low)==0) return a; in hypot()
93 hb += 0x25800000; /* b *= 2^600 */ in hypot()
96 SET_HIGH_WORD(b,hb); in hypot()
109 SET_HIGH_WORD(y1,hb); in hypot()