Lines Matching refs:hypot
231 r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_acos_impl()
234 r.imag = copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_acos_impl()
270 r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.; in cmath_acosh_impl()
325 r.real = copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_asinh_impl()
328 r.real = -copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_asinh_impl()
427 h = hypot(z.real/2., z.imag/2.); /* safe from overflow */ in cmath_atanh_impl()
442 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.))); in cmath_atanh_impl()
638 r.real = log(hypot(ax/2., ay/2.)) + M_LN2; in c_log()
642 r.real = log(hypot(ldexp(ax, DBL_MANT_DIG), in c_log()
653 h = hypot(ax, ay); in c_log()
828 s = ldexp(sqrt(ax + hypot(ax, ldexp(ay, CM_SCALE_UP))), in cmath_sqrt_impl()
832 s = 2.*sqrt(ax + hypot(ax, ay/8.)); in cmath_sqrt_impl()