HomeSort by relevance Sort by last modified time
    Searched refs:hypotl (Results 1 - 15 of 15) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
w_cabsl.c 19 return hypotl(creall(z), cimagl(z));
s_clogl.c 89 RETURNI(CMPLXL(logl(hypotl(x, y)), v));
104 RETURNI(CMPLXL(logl(hypotl(x * 0x1p-16382L, y * 0x1p-16382L)) +
107 RETURNI(CMPLXL(logl(hypotl(x, y)), v));
111 RETURNI(CMPLXL(logl(hypotl(x * 0x1p16383L, y * 0x1p16383L)) +
116 RETURNI(CMPLXL(logl(hypotl(x, y)), v));
s_csqrtl.c 116 t = sqrtl((a + hypotl(a, b)) * 0.5);
120 t = sqrtl((-a + hypotl(a, b)) * 0.5);
catrigl.c 115 R = hypotl(x, y + 1);
116 S = hypotl(x, y - 1);
316 return (CMPLXL(logl(hypotl(x / m_e, y / m_e)) + 1,
320 return (CMPLXL(logl(hypotl(x, y)), atan2l(y, x)));
e_hypot.c 130 __weak_reference(hypot, hypotl);
e_hypotl.c 49 hypotl(long double x, long double y) function
  /bionic/libm/x86/
e_hypot.S 202 ALIAS_SYMBOL(hypotl, hypot);
  /external/clang/test/CodeGen/
libcall-declarations.c 102 long double hypotl(long double, long double);
282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
401 // CHECK-NOERRNO: declare x86_fp80 @hypotl(x86_fp80, x86_fp80) [[NUW]]
  /bionic/tests/
math_test.cpp 973 TEST(MATH_TEST, hypotl) {
974 ASSERT_DOUBLE_EQ(5.0L, hypotl(3.0L, 4.0L));
977 ASSERT_EQ(HUGE_VALL, hypotl(3.0L, HUGE_VALL));
978 ASSERT_EQ(HUGE_VALL, hypotl(3.0L, -HUGE_VALL));
979 ASSERT_EQ(HUGE_VALL, hypotl(HUGE_VALL, 4.0L));
980 ASSERT_EQ(HUGE_VALL, hypotl(-HUGE_VALL, 4.0L));
983 ASSERT_TRUE(isnanl(hypotl(3.0L, nanl(""))));
984 ASSERT_TRUE(isnanl(hypotl(nanl(""), 4.0L)));
    [all...]
  /bionic/tests/headers/posix/
math_h.c 217 FUNCTION(hypotl, long double (*f)(long double, long double));
  /bionic/libc/include/
math.h 197 long double hypotl(long double __x, long double __y) __RENAME_LDBL(hypot, 3, 21);
  /external/clang/lib/Headers/
tgmath.h 837 __tg_hypot(long double __x, long double __y) {return hypotl(__x, __y);}
  /external/libcxx/include/
math.h 207 long double hypotl(long double x, long double y);
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp     [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp     [all...]

Completed in 630 milliseconds