Home
last modified time | relevance | path

Searched refs:tanh (Results 1 – 22 of 22) sorted by relevance

/ndk/tests/device/test-stlport/unit/
Dvalarray_test.cpp51 tmp = tanh(darray); in transcendentals()
77 tmp = tanh(farray); in transcendentals()
104 tmp = tanh(ldarray); in transcendentals()
Dcmath_test.cpp108 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/
Dvalarray_test.cpp51 tmp = tanh(darray); in transcendentals()
77 tmp = tanh(farray); in transcendentals()
104 tmp = tanh(ldarray); in transcendentals()
Dcmath_test.cpp108 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/
Dcomplex_trig.cpp181 _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/
Dtanh_valarray.pass.cpp46 std::valarray<T> v3 = tanh(v1); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dtanh.pass.cpp25 assert(tanh(c) == x); in test()
42 std::complex<double> r = tanh(x[i]); in test_edges()
Dtan.pass.cpp45 std::complex<double> t2 = tanh(t1); in test_edges()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h345 … (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.h883 _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.h1065 inline valarray<_Tp> tanh(const valarray<_Tp>& __x) { in tanh() function
1069 __tmp[__i] = ::tanh(__x[__i]); in tanh()
/ndk/sources/android/support/src/
Dmath_support.c67 __attribute__((weak)) long double tanhl(long double x) { return tanh((double)x); } in tanhl()
/ndk/sources/cxx-stl/system/include/
Dcmath55 using ::tanh;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath55 using ::tanh;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp227 using std::tanh;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp426 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/
Dcmath134 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);}
Dcomplex229 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()));
Dvalarray331 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/
Dmath_h.pass.cpp191 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/
DAndroid.mk2477 $(call gen-test, numerics/complex.number/complex.transcendentals/tanh)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2486 $(call gen-test, numerics/complex.number/complex.transcendentals/tanh)