Home
last modified time | relevance | path

Searched refs:expm1l (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/android/support/include/
Dmath.h67 long double expm1l(long double);
/ndk/sources/android/support/src/
Dmath_support.c74 __attribute__((weak)) long double expm1l(long double x) { return expm1((double)x); } in expm1l() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath190 long double expm1l(long double x);
1178 inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __x) _NOEXCEPT {return expm1l(__x);}
1650 using ::expm1l;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp404 static_assert((std::is_same<decltype(expm1l(0)), long double>::value), ""); in test_expm1()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp792 static_assert((std::is_same<decltype(std::expm1l(0)), long double>::value), ""); in test_expm1()