Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dcomplex_trig.cpp70 ::cos(z._M_re) * ::sinh(z._M_im)); in sinT()
89 -::sin(z._M_re) * ::sinh(z._M_im)); in cosT()
114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den); in tanT()
133 return complex<_Tp>(::sinh(z._M_re) * ::cos(z._M_im), in sinhT()
137 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>& z) in sinh() function
140 _STLP_DECLSPEC complex<double> _STLP_CALL sinh(const complex<double>& z) in sinh() function
144 _STLP_DECLSPEC complex<long double> _STLP_CALL sinh(const complex<long double>& z) in sinh() function
153 ::sinh(z._M_re) * ::sin(z._M_im)); in coshT()
177 return complex<_Tp>(::sinh(re2) / den, ::sin(im2) / den); in tanhT()
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_como.h95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
/ndk/tests/device/test-gnustl-full/unit/
Dvalarray_test.cpp48 tmp = sinh(darray); in transcendentals()
74 tmp = sinh(farray); in transcendentals()
101 tmp = sinh(ldarray); in transcendentals()
Dcmath_test.cpp106 CPPUNIT_CHECK( are_equals(std::sinh(0.0), 0.0) ); in import_checks()
131 CPPUNIT_CHECK( are_equals(std::sinh(0.0f), 0.0f) ); in import_checks()
158 CPPUNIT_CHECK( are_equals(std::sinh(0.0l), 0.0l) ); in import_checks()
/ndk/tests/device/test-stlport/unit/
Dvalarray_test.cpp48 tmp = sinh(darray); in transcendentals()
74 tmp = sinh(farray); in transcendentals()
101 tmp = sinh(ldarray); in transcendentals()
Dcmath_test.cpp106 CPPUNIT_CHECK( are_equals(std::sinh(0.0), 0.0) ); in import_checks()
131 CPPUNIT_CHECK( are_equals(std::sinh(0.0f), 0.0f) ); in import_checks()
158 CPPUNIT_CHECK( are_equals(std::sinh(0.0l), 0.0l) ); in import_checks()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
Dsinh_valarray.pass.cpp46 std::valarray<T> v3 = sinh(v1); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dsinh.pass.cpp25 assert(sinh(c) == x); in test()
42 std::complex<double> r = sinh(x[i]); in test_edges()
Dsin.pass.cpp44 std::complex<double> t2 = sinh(t1); in test_edges()
/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
378 _STLP_DMATH_INLINE(sinh) in _STLP_DMATH_INLINE()
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 … (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
D_complex.h881 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>&);
900 _STLP_DECLSPEC complex<double> _STLP_CALL sinh(const complex<double>&);
920 _STLP_DECLSPEC complex<long double> _STLP_CALL sinh(const complex<long double>&);
D_valarray.h1038 inline valarray<_Tp> sinh(const valarray<_Tp>& __x) { in sinh() function
1042 __tmp[__i] = ::sinh(__x[__i]); in sinh()
/ndk/sources/cxx-stl/system/include/
Dcmath54 using ::sinh;
/ndk/sources/android/support/src/
Dmath_support.c64 __attribute__((weak)) long double sinhl(long double x) { return sinh((double)x); } in sinhl()
/ndk/sources/cxx-stl/gabi++/include/
Dcmath54 using ::sinh;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp235 using std::sinh;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp372 static_assert((std::is_same<decltype(std::sinh((float)0)), float>::value), ""); in test_sinh()
373 static_assert((std::is_same<decltype(std::sinh((bool)0)), double>::value), ""); in test_sinh()
374 static_assert((std::is_same<decltype(std::sinh((unsigned short)0)), double>::value), ""); in test_sinh()
375 static_assert((std::is_same<decltype(std::sinh((int)0)), double>::value), ""); in test_sinh()
376 static_assert((std::is_same<decltype(std::sinh((unsigned int)0)), double>::value), ""); in test_sinh()
377 static_assert((std::is_same<decltype(std::sinh((long)0)), double>::value), ""); in test_sinh()
378 static_assert((std::is_same<decltype(std::sinh((unsigned long)0)), double>::value), ""); in test_sinh()
379 static_assert((std::is_same<decltype(std::sinh((long long)0)), double>::value), ""); in test_sinh()
380 static_assert((std::is_same<decltype(std::sinh((unsigned long long)0)), double>::value), ""); in test_sinh()
381 static_assert((std::is_same<decltype(std::sinh((double)0)), double>::value), ""); in test_sinh()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcomplex226 template<class T> complex<T> sinh (const complex<T>&);
1307 // sinh
1311 sinh(const complex<_Tp>& __x)
1319 return complex<_Tp>(sinh(__x.real()) * cos(__x.imag()), cosh(__x.real()) * sin(__x.imag()));
1336 return complex<_Tp>(cosh(__x.real()) * cos(__x.imag()), sinh(__x.real()) * sin(__x.imag()));
1356 _Tp __2rsh(sinh(__2r));
1426 complex<_Tp> __z = sinh(complex<_Tp>(-__x.imag(), __x.real()));
Dcmath122 floating_point sinh (arithmetic x);
984 // sinh
986 using ::sinh;
990 inline _LIBCPP_INLINE_VISIBILITY float sinh(float __x) _NOEXCEPT {return sinhf(__x);}
991 inline _LIBCPP_INLINE_VISIBILITY long double sinh(long double __x) _NOEXCEPT {return sinhl(__x);}
997 sinh(_A1 __x) _NOEXCEPT {return sinh((double)__x);}
Dvalarray328 template<class T> valarray<T> sinh (const valarray<T>& x);
617 {return sinh(__x);}
4696 sinh(const _Expr& __x)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp167 static_assert((std::is_same<decltype(sinh((double)0)), double>::value), ""); in test_sinh()
170 assert(sinh(0) == 0); in test_sinh()
/ndk/sources/android/support/src/msun/
Dmath_private.h688 #define __ieee754_sinh sinh
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2483 $(call gen-test, numerics/complex.number/complex.transcendentals/sinh)
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk2474 $(call gen-test, numerics/complex.number/complex.transcendentals/sinh)