Lines Matching refs:a
53 long double a,b,a1,a2,b1,b2,w,kld; in __ieee754_hypotl() local
63 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypotl()
64 a = fabsl(a); /* a <- |a| */ in __ieee754_hypotl()
66 if((ha-hb)>0x0780000000000000LL) {return a+b;} /* x/y > 2**120 */ in __ieee754_hypotl()
71 w = a+b; /* for sNaN */ in __ieee754_hypotl()
72 if (issignaling (a) || issignaling (b)) in __ieee754_hypotl()
75 w = a; in __ieee754_hypotl()
81 a *= 0x1p-600L; in __ieee754_hypotl()
88 if(hb==0) return a; in __ieee754_hypotl()
89 a *= 0x1p+1022L; in __ieee754_hypotl()
94 a *= 0x1p+600L; in __ieee754_hypotl()
101 w = a-b; in __ieee754_hypotl()
103 ldbl_unpack (a, &hi, &lo); in __ieee754_hypotl()
112 w = sqrtl(a1*a1-(b*(-b)-a2*(a+a1))); in __ieee754_hypotl()
114 a = a+a; in __ieee754_hypotl()
118 ldbl_unpack (a, &hi, &lo); in __ieee754_hypotl()