Lines Matching refs:w
53 long double a,b,a1,a2,b1,b2,w,kld; in __ieee754_hypotl() local
71 w = a+b; /* for sNaN */ in __ieee754_hypotl()
73 return w; in __ieee754_hypotl()
75 w = a; in __ieee754_hypotl()
77 w = b; in __ieee754_hypotl()
78 return w; in __ieee754_hypotl()
101 w = a-b; in __ieee754_hypotl()
102 if (w>b) { in __ieee754_hypotl()
112 w = sqrtl(a1*a1-(b*(-b)-a2*(a+a1))); in __ieee754_hypotl()
129 w = sqrtl(a1*b1-(w*(-w)-(a1*b2+a2*b))); in __ieee754_hypotl()
133 w *= kld; in __ieee754_hypotl()
134 math_check_force_underflow_nonneg (w); in __ieee754_hypotl()
135 return w; in __ieee754_hypotl()
138 return w; in __ieee754_hypotl()