Home
last modified time | relevance | path

Searched refs:sqrtl (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_como.h89 # define sqrtl sqrt macro
128 # define sqrtl sqrt macro
163 # define sqrtl sqrt macro
/ndk/sources/android/support/include/
Dmath.h58 long double sqrtl(long double);
/ndk/sources/android/support/src/
Dmath_support.c65 __attribute__((weak)) long double sqrtl(long double x) { return sqrt((double)x); } in sqrtl() function
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h99 inline long double sqrtl(long double v) { return __sqrtl(v); } in sqrtl() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath128 long double sqrtl(long double x);
1008 inline _LIBCPP_INLINE_VISIBILITY long double sqrt(long double __x) _NOEXCEPT {return sqrtl(__x);}
1636 using ::sqrtl;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp177 static_assert((std::is_same<decltype(sqrtl(0)), long double>::value), ""); in test_sqrt()
/ndk/sources/cxx-stl/llvm-libc++/
Dexport_symbols.txt2278 sqrtl;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp402 static_assert((std::is_same<decltype(std::sqrtl(0)), long double>::value), ""); in test_sqrt()