Home
last modified time | relevance | path

Searched refs:log10 (Results 1 – 24 of 24) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_como.h93 # define log10l log10
123 # define log10f log10
124 # define log10l log10
166 # define log10l log10
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dlog10.pass.cpp25 assert(log10(c) == x); in test()
41 std::complex<double> r = log10(x[i]); in test_edges()
/ndk/tests/device/test-gnustl-full/unit/
Dvalarray_test.cpp55 tmp = log10(darray); in transcendentals()
81 tmp = log10(farray); in transcendentals()
108 tmp = log10(ldarray); in transcendentals()
Dcmath_test.cpp93 CPPUNIT_CHECK( are_equals(std::log10(100.0), 2.0) ); in import_checks()
118 CPPUNIT_CHECK( are_equals(std::log10(100.0f), 2.0f) ); in import_checks()
144 CPPUNIT_CHECK( are_equals(std::log10(100.0l), 2.0l) ); in import_checks()
/ndk/tests/device/test-stlport/unit/
Dvalarray_test.cpp55 tmp = log10(darray); in transcendentals()
81 tmp = log10(farray); in transcendentals()
108 tmp = log10(ldarray); in transcendentals()
Dcmath_test.cpp93 CPPUNIT_CHECK( are_equals(std::log10(100.0), 2.0) ); in import_checks()
118 CPPUNIT_CHECK( are_equals(std::log10(100.0f), 2.0f) ); in import_checks()
144 CPPUNIT_CHECK( are_equals(std::log10(100.0l), 2.0l) ); in import_checks()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
Dlog10_valarray.pass.cpp46 std::valarray<T> v3 = log10(v1); in main()
/ndk/sources/cxx-stl/stlport/src/
Dcomplex.cpp225 r._M_re = ::log10(::hypot(z._M_re, z._M_im)); in log10T()
229 _STLP_DECLSPEC complex<float> _STLP_CALL log10(const complex<float>& z) in log10() function
235 _STLP_DECLSPEC complex<double> _STLP_CALL log10(const complex<double>& z) in log10() function
237 const double LN10_INV = 1. / ::log10(10.); in log10()
242 _STLP_DECLSPEC complex<long double> _STLP_CALL log10(const complex<long double>& z) in log10() function
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh…
375 _STLP_DMATH_INLINE(log10) in _STLP_DMATH_INLINE()
446 _STLP_DEF_MATH_INLINE(log10, log10)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sin…
583 using ::log10;
D_complex.h870 _STLP_DECLSPEC complex<float> _STLP_CALL log10(const complex<float>&);
889 _STLP_DECLSPEC complex<double> _STLP_CALL log10(const complex<double>&);
908 _STLP_DECLSPEC complex<long double> _STLP_CALL log10(const complex<long double>&);
D_valarray.h992 inline valarray<_Tp> log10(const valarray<_Tp>& __x) { in log10() function
996 __tmp[__i] = ::log10(__x[__i]); in log10()
/ndk/sources/cxx-stl/system/include/
Dcmath61 using ::log10;
/ndk/sources/android/support/src/
Dmath_support.c82 __attribute__((weak)) long double log10l(long double x) { return log10((double)x); } in log10l()
/ndk/sources/cxx-stl/gabi++/include/
Dcmath61 using ::log10;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp238 using std::log10;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp296 static_assert((std::is_same<decltype(std::log10((float)0)), float>::value), ""); in test_log10()
297 static_assert((std::is_same<decltype(std::log10((bool)0)), double>::value), ""); in test_log10()
298 static_assert((std::is_same<decltype(std::log10((unsigned short)0)), double>::value), ""); in test_log10()
299 static_assert((std::is_same<decltype(std::log10((int)0)), double>::value), ""); in test_log10()
300 static_assert((std::is_same<decltype(std::log10((unsigned int)0)), double>::value), ""); in test_log10()
301 static_assert((std::is_same<decltype(std::log10((long)0)), double>::value), ""); in test_log10()
302 static_assert((std::is_same<decltype(std::log10((unsigned long)0)), double>::value), ""); in test_log10()
303 static_assert((std::is_same<decltype(std::log10((long long)0)), double>::value), ""); in test_log10()
304 static_assert((std::is_same<decltype(std::log10((unsigned long long)0)), double>::value), ""); in test_log10()
305 static_assert((std::is_same<decltype(std::log10((double)0)), double>::value), ""); in test_log10()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dplain_report_formatter.ipp34 namespace std { using ::log10; }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath106 floating_point log10 (arithmetic x);
915 // log10
917 using ::log10;
921 inline _LIBCPP_INLINE_VISIBILITY float log10(float __x) _NOEXCEPT {return log10f(__x);}
922 inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __x) _NOEXCEPT {return log10l(__x);}
928 log10(_A1 __x) _NOEXCEPT {return log10((double)__x);}
Dcomplex219 template<class T> complex<T> log10(const complex<T>&);
1112 // log10
1117 log10(const complex<_Tp>& __x)
Dvalarray321 template<class T> valarray<T> log10(const valarray<T>& x);
593 {return log10(__x);}
4622 log10(const _Expr& __x)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp134 static_assert((std::is_same<decltype(log10((double)0)), double>::value), ""); in test_log10()
137 assert(log10(1) == 0); in test_log10()
/ndk/sources/android/support/src/msun/
Dmath_private.h687 #define __ieee754_log10 log10
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2478 $(call gen-test, numerics/complex.number/complex.transcendentals/log10)
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk2469 $(call gen-test, numerics/complex.number/complex.transcendentals/log10)