Searched refs:hypot (Results 1 – 7 of 7) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_csqrtf.c | 82 t = sqrt((a + hypot(a, b)) * 0.5); in csqrtf() 85 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrtf()
|
D | w_cabs.c | 18 return hypot(creal(z), cimag(z)); in cabs()
|
D | s_csqrt.c | 96 t = sqrt((a + hypot(a, b)) * 0.5); in csqrt() 99 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrt()
|
D | e_hypot.c | 130 __weak_reference(hypot, hypotl);
|
D | math_private.h | 689 #define __ieee754_hypot hypot
|
/bionic/libm/include/ |
D | math.h | 232 double hypot(double, double);
|
/bionic/tests/ |
D | math_test.cpp | 728 TEST(math, hypot) { in TEST() argument 729 ASSERT_DOUBLE_EQ(5.0, hypot(3.0, 4.0)); in TEST()
|