Home
last modified time | relevance | path

Searched refs:hypot (Results 1 – 7 of 7) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_csqrtf.c82 t = sqrt((a + hypot(a, b)) * 0.5); in csqrtf()
85 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrtf()
Dw_cabs.c18 return hypot(creal(z), cimag(z)); in cabs()
Ds_csqrt.c96 t = sqrt((a + hypot(a, b)) * 0.5); in csqrt()
99 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrt()
De_hypot.c130 __weak_reference(hypot, hypotl);
Dmath_private.h689 #define __ieee754_hypot hypot
/bionic/libm/include/
Dmath.h232 double hypot(double, double);
/bionic/tests/
Dmath_test.cpp728 TEST(math, hypot) { in TEST() argument
729 ASSERT_DOUBLE_EQ(5.0, hypot(3.0, 4.0)); in TEST()