Lines Matching refs:b
51 long double a=x,b=y,t1,t2,y1,y2,w; in hypotl() local
58 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotl()
60 b = fabsl(b); in hypotl()
61 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ in hypotl()
70 GET_LDBL_MAN(manh,manl,b); in hypotl()
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b; in hypotl()
78 SET_HIGH_WORD(b,hb); in hypotl()
83 GET_LDBL_MAN(manh,manl,b); in hypotl()
87 b *= t1; in hypotl()
95 SET_HIGH_WORD(b,hb); in hypotl()
99 w = a-b; in hypotl()
100 if (w>b) { in hypotl()
105 w = sqrtl(t1*t1-(b*(-b)-t2*(a+t1))); in hypotl()
108 y1 = b; in hypotl()
111 y2 = b - y1; in hypotl()
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b))); in hypotl()