Lines Matching refs:b
57 double a,b,t1,t2,y1,y2,w; in __ieee754_hypot() local
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypot()
66 b = fabs(b); in __ieee754_hypot()
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in __ieee754_hypot()
76 GET_LOW_WORD(low,b); in __ieee754_hypot()
77 if(((hb^0x7ff00000)|low)==0) w = b; in __ieee754_hypot()
83 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
88 GET_LOW_WORD(low,b); in __ieee754_hypot()
92 b *= t1; in __ieee754_hypot()
100 SET_HIGH_WORD(b,hb); in __ieee754_hypot()
104 w = a-b; in __ieee754_hypot()
105 if (w>b) { in __ieee754_hypot()
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in __ieee754_hypot()
114 y2 = b - y1; in __ieee754_hypot()
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b))); in __ieee754_hypot()