/ndk/sources/cxx-stl/stlport/src/ |
D | complex_trig.cpp | 70 ::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.h | 95 # define sinhl sinh 113 # define sinhf sinh 114 # define sinhl sinh 167 # define sinhl sinh
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | valarray_test.cpp | 48 tmp = sinh(darray); in transcendentals() 74 tmp = sinh(farray); in transcendentals() 101 tmp = sinh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 106 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/ |
D | valarray_test.cpp | 48 tmp = sinh(darray); in transcendentals() 74 tmp = sinh(farray); in transcendentals() 101 tmp = sinh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 106 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/ |
D | sinh_valarray.pass.cpp | 46 std::valarray<T> v3 = sinh(v1); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/ |
D | sinh.pass.cpp | 25 assert(sinh(c) == x); in test() 42 std::complex<double> r = sinh(x[i]); in test_edges()
|
D | sin.pass.cpp | 44 std::complex<double> t2 = sinh(t1); in test_edges()
|
/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… 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.h | 881 _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.h | 1038 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/ |
D | cmath | 54 using ::sinh;
|
/ndk/sources/android/support/src/ |
D | math_support.c | 64 __attribute__((weak)) long double sinhl(long double x) { return sinh((double)x); } in sinhl()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cmath | 54 using ::sinh;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
D | config.hpp | 235 using std::sinh;\
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 372 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/ |
D | complex | 226 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()));
|
D | cmath | 122 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);}
|
D | valarray | 328 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/ |
D | math_h.pass.cpp | 167 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/ |
D | math_private.h | 688 #define __ieee754_sinh sinh
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 2483 $(call gen-test, numerics/complex.number/complex.transcendentals/sinh)
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 2474 $(call gen-test, numerics/complex.number/complex.transcendentals/sinh)
|