/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _como.h | 93 # 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/ |
D | log10.pass.cpp | 25 assert(log10(c) == x); in test() 41 std::complex<double> r = log10(x[i]); in test_edges()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | valarray_test.cpp | 55 tmp = log10(darray); in transcendentals() 81 tmp = log10(farray); in transcendentals() 108 tmp = log10(ldarray); in transcendentals()
|
D | cmath_test.cpp | 93 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/ |
D | valarray_test.cpp | 55 tmp = log10(darray); in transcendentals() 81 tmp = log10(farray); in transcendentals() 108 tmp = log10(ldarray); in transcendentals()
|
D | cmath_test.cpp | 93 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/ |
D | log10_valarray.pass.cpp | 46 std::valarray<T> v3 = log10(v1); in main()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | complex.cpp | 225 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.h | 345 # 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.h | 870 _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.h | 992 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/ |
D | cmath | 61 using ::log10;
|
/ndk/sources/android/support/src/ |
D | math_support.c | 82 __attribute__((weak)) long double log10l(long double x) { return log10((double)x); } in log10l()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cmath | 61 using ::log10;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
D | config.hpp | 238 using std::log10;\
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 296 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/ |
D | plain_report_formatter.ipp | 34 namespace std { using ::log10; }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 106 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);}
|
D | complex | 219 template<class T> complex<T> log10(const complex<T>&); 1112 // log10 1117 log10(const complex<_Tp>& __x)
|
D | valarray | 321 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/ |
D | math_h.pass.cpp | 134 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/ |
D | math_private.h | 687 #define __ieee754_log10 log10
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 2478 $(call gen-test, numerics/complex.number/complex.transcendentals/log10)
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 2469 $(call gen-test, numerics/complex.number/complex.transcendentals/log10)
|