Home
last modified time | relevance | path

Searched refs:hypotl (Results 1 – 9 of 9) 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/x86/
De_hypot.S202 ALIAS_SYMBOL(hypotl, hypot);
/bionic/libm/
Dlibm.map153 hypotl;
/bionic/libm/include/
Dmath.h428 long double hypotl(long double, long double);
/bionic/libc/tools/
Dposix-2013.txt397 hypotl
/bionic/tests/
Dmath_test.cpp728 TEST(math, hypotl) { in TEST() argument
729 ASSERT_DOUBLE_EQ(5.0L, hypotl(3.0L, 4.0L)); in TEST()