Home
last modified time | relevance | path

Searched refs:hypotl (Results 1 – 6 of 6) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
Dw_cabsl.c19 return hypotl(creall(z), cimagl(z)); in cabsl()
Ds_csqrtl.c96 t = sqrtl((a + hypotl(a, b)) * 0.5); in csqrtl()
99 t = sqrtl((-a + hypotl(a, b)) * 0.5); in csqrtl()
De_hypot.c130 __weak_reference(hypot, hypotl);
De_hypotl.c49 hypotl(long double x, long double y) in hypotl() function
/bionic/libm/include/
Dmath.h416 long double hypotl(long double, long double);
/bionic/tests/
Dmath_test.cpp635 TEST(math, hypotl) { in TEST() argument
636 ASSERT_FLOAT_EQ(5.0, hypotl(3.0, 4.0)); in TEST()