Lines Matching refs:hb
48 int32_t j,k,ha,hb; in hypotl() local
52 GET_HIGH_WORD(hb,y); in hypotl()
53 hb &= 0x7fff; in hypotl()
54 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotl()
57 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ in hypotl()
67 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b; in hypotl()
71 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88); in hypotl()
74 SET_HIGH_WORD(b,hb); in hypotl()
76 if(hb < ESW(-(MAX_EXP/2-12))) { /* b < 2**-(MAX_EXP/2-12) */ in hypotl()
77 if(hb <= 0) { /* subnormal b or 0 */ in hypotl()
88 hb += DESW(MAX_EXP/2+88); in hypotl()
91 SET_HIGH_WORD(b,hb); in hypotl()