Searched refs:hypot (Results 1 – 15 of 15) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_clog.c | 72 return (CMPLX(log(hypot(x, y)), v)); in clog() 87 return (CMPLX(log(hypot(x * 0x1p-1022, y * 0x1p-1022)) + in clog() 90 return (CMPLX(log(hypot(x, y)), v)); in clog() 94 return (CMPLX(log(hypot(x * 0x1p1023, y * 0x1p1023)) + in clog() 99 return (CMPLX(log(hypot(x, y)), v)); in clog()
|
D | w_cabs.c | 18 return hypot(creal(z), cimag(z)); in cabs()
|
D | s_csqrtf.c | 78 t = sqrt((a + hypot(a, b)) * 0.5); in csqrtf() 81 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrtf()
|
D | s_csqrt.c | 101 t = sqrt((a + hypot(a, b)) * 0.5); in csqrt() 105 t = sqrt((-a + hypot(a, b)) * 0.5); in csqrt()
|
D | catrig.c | 161 R = hypot(x, y + 1); /* |z+I| */ in do_hard_work() 162 S = hypot(x, y - 1); /* |z-I| */ in do_hard_work() 485 return (CMPLX(log(hypot(x / m_e, y / m_e)) + 1, atan2(y, x))); in clog_for_large_values() 492 return (CMPLX(log(hypot(x, y)), atan2(y, x))); in clog_for_large_values()
|
D | e_hypot.c | 130 __weak_reference(hypot, hypotl);
|
D | math_private.h | 849 #define __ieee754_hypot hypot
|
/bionic/libm/x86/ |
D | e_hypot.S | 82 # -- Begin hypot 83 ENTRY(hypot) 198 END(hypot) 199 # -- End hypot 202 ALIAS_SYMBOL(hypotl, hypot);
|
/bionic/libm/x86_64/ |
D | e_hypot.S | 67 # -- Begin hypot 68 ENTRY(hypot) 177 END(hypot) 178 # -- End hypot
|
/bionic/tests/headers/posix/ |
D | tgmath_h.c | 89 TGMATH2(hypot); in tgmath_h()
|
D | math_h.c | 215 FUNCTION(hypot, double (*f)(double, double)); in math_h()
|
/bionic/tests/ |
D | math_test.cpp | 945 TEST(MATH_TEST, hypot) { in TEST() argument 946 ASSERT_DOUBLE_EQ(5.0, hypot(3.0, 4.0)); in TEST() 949 ASSERT_EQ(HUGE_VAL, hypot(3.0, HUGE_VAL)); in TEST() 950 ASSERT_EQ(HUGE_VAL, hypot(3.0, -HUGE_VAL)); in TEST() 951 ASSERT_EQ(HUGE_VAL, hypot(HUGE_VAL, 4.0)); in TEST() 952 ASSERT_EQ(HUGE_VAL, hypot(-HUGE_VAL, 4.0)); in TEST() 955 ASSERT_TRUE(isnan(hypot(3.0, nan("")))); in TEST() 956 ASSERT_TRUE(isnan(hypot(nan(""), 4.0))); in TEST() 1895 DoMathDataTest<1>(g_hypot_intel_data, hypot); in TEST()
|
/bionic/libc/include/ |
D | math.h | 195 double hypot(double __x, double __y); 197 long double hypotl(long double __x, long double __y) __RENAME_LDBL(hypot, 3, 21);
|
/bionic/libm/ |
D | libm.map.txt | 151 hypot;
|
/bionic/libc/tools/ |
D | posix-2013.txt | 396 hypot
|