Home
last modified time | relevance | path

Searched refs:log10l (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_como.h93 # define log10l log10 macro
124 # define log10l log10 macro
166 # define log10l log10 macro
/ndk/sources/android/support/include/
Dmath.h75 long double log10l(long double);
/ndk/sources/android/support/src/
Dmath_support.c82 __attribute__((weak)) long double log10l(long double x) { return log10((double)x); } in log10l() function
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h102 inline long double log10l(long double v) { return __log10l(v); } in log10l() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath108 long double log10l(long double x);
922 inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __x) _NOEXCEPT {return log10l(__x);}
1631 using ::log10l;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp136 static_assert((std::is_same<decltype(log10l(0)), long double>::value), ""); in test_log10()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp308 static_assert((std::is_same<decltype(std::log10l(0)), long double>::value), ""); in test_log10()