Lines Matching refs:a
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()
65 a = fabs(a); in __ieee754_hypot()
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in __ieee754_hypot()
74 GET_LOW_WORD(low,a); in __ieee754_hypot()
75 if(((ha&0xfffff)|low)==0) w = a; in __ieee754_hypot()
82 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
89 if((hb|low)==0) return a; in __ieee754_hypot()
93 a *= t1; in __ieee754_hypot()
99 SET_HIGH_WORD(a,ha); in __ieee754_hypot()
104 w = a-b; in __ieee754_hypot()
108 t2 = a-t1; in __ieee754_hypot()
109 w = sqrt(t1*t1-(b*(-b)-t2*(a+t1))); in __ieee754_hypot()
111 a = a+a; in __ieee754_hypot()
117 t2 = a - t1; in __ieee754_hypot()