Home
last modified time | relevance | path

Searched refs:hypotl (Results 1 – 15 of 15) 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/libc/include/
Dmath.h280 long double hypotl(long double, long double) __INTRODUCED_IN(21);
/bionic/libm/
Dlibm.x86.map154 hypotl; # introduced=21
Dlibm.mips64.map154 hypotl; # introduced=21
Dlibm.arm64.map154 hypotl; # introduced=21
Dlibm.x86_64.map154 hypotl; # introduced=21
Dlibm.mips.map154 hypotl; # introduced=21
Dlibm.map.txt153 hypotl; # introduced=21
Dlibm.arm.map154 hypotl; # introduced=21
/bionic/libc/tools/
Dposix-2013.txt397 hypotl
/bionic/tests/
Dmath_test.cpp749 TEST(math, hypotl) { in TEST() argument
750 ASSERT_DOUBLE_EQ(5.0L, hypotl(3.0L, 4.0L)); in TEST()