/ndk/tests/device/test-stlport/unit/ |
D | valarray_test.cpp | 51 tmp = tanh(darray); in transcendentals() 77 tmp = tanh(farray); in transcendentals() 104 tmp = tanh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 108 CPPUNIT_CHECK( are_equals(std::tanh(0.0), 0.0) ); in import_checks() 133 CPPUNIT_CHECK( are_equals(std::tanh(0.0f), 0.0f) ); in import_checks() 160 CPPUNIT_CHECK( are_equals(std::tanh(0.0l), 0.0l) ); in import_checks()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | valarray_test.cpp | 51 tmp = tanh(darray); in transcendentals() 77 tmp = tanh(farray); in transcendentals() 104 tmp = tanh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 108 CPPUNIT_CHECK( are_equals(std::tanh(0.0), 0.0) ); in import_checks() 133 CPPUNIT_CHECK( are_equals(std::tanh(0.0f), 0.0f) ); in import_checks() 160 CPPUNIT_CHECK( are_equals(std::tanh(0.0l), 0.0l) ); in import_checks()
|
/ndk/sources/cxx-stl/stlport/src/ |
D | complex_trig.cpp | 181 _STLP_DECLSPEC complex<float> _STLP_CALL tanh(const complex<float>& z) in tanh() function 184 _STLP_DECLSPEC complex<double> _STLP_CALL tanh(const complex<double>& z) in tanh() function 188 _STLP_DECLSPEC complex<long double> _STLP_CALL tanh(const complex<long double>& z) in tanh() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
D | tanh_valarray.pass.cpp | 46 std::valarray<T> v3 = tanh(v1); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/ |
D | tanh.pass.cpp | 25 assert(tanh(c) == x); in test() 42 std::complex<double> r = tanh(x[i]); in test_edges()
|
D | tan.pass.cpp | 45 std::complex<double> t2 = tanh(t1); in test_edges()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cmath.h | 345 … (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 381 _STLP_DMATH_INLINE(tanh) in _STLP_DMATH_INLINE() 452 _STLP_DEF_MATH_INLINE(tanh, tanh) 515 … (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 593 using ::tanh;
|
D | _complex.h | 883 _STLP_DECLSPEC complex<float> _STLP_CALL tanh(const complex<float>&); 902 _STLP_DECLSPEC complex<double> _STLP_CALL tanh(const complex<double>&); 922 _STLP_DECLSPEC complex<long double> _STLP_CALL tanh(const complex<long double>&);
|
D | _valarray.h | 1065 inline valarray<_Tp> tanh(const valarray<_Tp>& __x) { in tanh() function 1069 __tmp[__i] = ::tanh(__x[__i]); in tanh()
|
/ndk/sources/android/support/src/ |
D | math_support.c | 67 __attribute__((weak)) long double tanhl(long double x) { return tanh((double)x); } in tanhl()
|
/ndk/sources/cxx-stl/system/include/ |
D | cmath | 55 using ::tanh;
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cmath | 55 using ::tanh;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
D | config.hpp | 227 using std::tanh;\
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 426 static_assert((std::is_same<decltype(std::tanh((float)0)), float>::value), ""); in test_tanh() 427 static_assert((std::is_same<decltype(std::tanh((bool)0)), double>::value), ""); in test_tanh() 428 static_assert((std::is_same<decltype(std::tanh((unsigned short)0)), double>::value), ""); in test_tanh() 429 static_assert((std::is_same<decltype(std::tanh((int)0)), double>::value), ""); in test_tanh() 430 static_assert((std::is_same<decltype(std::tanh((unsigned int)0)), double>::value), ""); in test_tanh() 431 static_assert((std::is_same<decltype(std::tanh((long)0)), double>::value), ""); in test_tanh() 432 static_assert((std::is_same<decltype(std::tanh((unsigned long)0)), double>::value), ""); in test_tanh() 433 static_assert((std::is_same<decltype(std::tanh((long long)0)), double>::value), ""); in test_tanh() 434 static_assert((std::is_same<decltype(std::tanh((unsigned long long)0)), double>::value), ""); in test_tanh() 435 static_assert((std::is_same<decltype(std::tanh((double)0)), double>::value), ""); in test_tanh() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cmath | 134 floating_point tanh (arithmetic x); 1032 // tanh 1034 using ::tanh; 1038 inline _LIBCPP_INLINE_VISIBILITY float tanh(float __x) _NOEXCEPT {return tanhf(__x);} 1039 inline _LIBCPP_INLINE_VISIBILITY long double tanh(long double __x) _NOEXCEPT {return tanhl(__x);} 1045 tanh(_A1 __x) _NOEXCEPT {return tanh((double)__x);}
|
D | complex | 229 template<class T> complex<T> tanh (const complex<T>&); 1339 // tanh 1343 tanh(const complex<_Tp>& __x) 1446 complex<_Tp> __z = tanh(complex<_Tp>(-__x.imag(), __x.real()));
|
D | valarray | 331 template<class T> valarray<T> tanh (const valarray<T>& x); 641 {return tanh(__x);} 4738 tanh(const _Expr& __x)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | math_h.pass.cpp | 191 static_assert((std::is_same<decltype(tanh((double)0)), double>::value), ""); in test_tanh() 194 assert(tanh(0) == 0); in test_tanh()
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 2477 $(call gen-test, numerics/complex.number/complex.transcendentals/tanh)
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 2486 $(call gen-test, numerics/complex.number/complex.transcendentals/tanh)
|