/ndk/sources/cxx-stl/stlport/src/ |
D | complex_trig.cpp | 69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im), in sinT() 88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im), in cosT() 113 _Tp den = ::cos(re2) + ::cosh(im2); in tanT() 134 ::cosh(z._M_re) * ::sin(z._M_im)); in sinhT() 152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im), in coshT() 156 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>& z) in cosh() function 159 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>& z) in cosh() function 163 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>& z) in cosh() function 176 _Tp den = ::cosh(re2) + ::cos(im2); in tanhT()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _como.h | 96 # define coshl cosh 117 # define coshf cosh 118 # define coshl cosh 168 # define coshl cosh
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | valarray_test.cpp | 46 tmp = cosh(darray); in transcendentals() 72 tmp = cosh(farray); in transcendentals() 99 tmp = cosh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 105 CPPUNIT_CHECK( are_equals(std::cosh(0.0), 1.0) ); in import_checks() 130 CPPUNIT_CHECK( are_equals(std::cosh(0.0f), 1.0f) ); in import_checks() 157 CPPUNIT_CHECK( are_equals(std::cosh(0.0l), 1.0l) ); in import_checks()
|
/ndk/tests/device/test-stlport/unit/ |
D | valarray_test.cpp | 46 tmp = cosh(darray); in transcendentals() 72 tmp = cosh(farray); in transcendentals() 99 tmp = cosh(ldarray); in transcendentals()
|
D | cmath_test.cpp | 105 CPPUNIT_CHECK( are_equals(std::cosh(0.0), 1.0) ); in import_checks() 130 CPPUNIT_CHECK( are_equals(std::cosh(0.0f), 1.0f) ); in import_checks() 157 CPPUNIT_CHECK( are_equals(std::cosh(0.0l), 1.0l) ); in import_checks()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
D | cosh_valarray.pass.cpp | 46 std::valarray<T> v3 = cosh(v1); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/ |
D | cosh.pass.cpp | 25 assert(cosh(c) == x); in test() 42 std::complex<double> r = cosh(x[i]); in test_edges()
|
D | cos.pass.cpp | 44 std::complex<double> z = cosh(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… 367 _STLP_DMATH_INLINE(cosh) in _STLP_DMATH_INLINE() 438 _STLP_DEF_MATH_INLINE(cosh, cosh) 515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sin… 560 using ::cosh;
|
D | _complex.h | 882 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>&); 901 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>&); 921 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>&);
|
D | _valarray.h | 965 inline valarray<_Tp> cosh(const valarray<_Tp>& __x) { in cosh() function 969 __tmp[__i] = ::cosh(__x[__i]); in cosh()
|
/ndk/sources/cxx-stl/system/include/ |
D | cmath | 53 using ::cosh;
|
/ndk/sources/android/support/src/ |
D | math_support.c | 59 __attribute__((weak)) long double coshl(long double x) { return cosh((double)x); } in coshl()
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | cmath | 53 using ::cosh;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
D | config.hpp | 224 using std::cosh;\
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | cmath.pass.cpp | 146 static_assert((std::is_same<decltype(std::cosh((float)0)), float>::value), ""); in test_cosh() 147 static_assert((std::is_same<decltype(std::cosh((bool)0)), double>::value), ""); in test_cosh() 148 static_assert((std::is_same<decltype(std::cosh((unsigned short)0)), double>::value), ""); in test_cosh() 149 static_assert((std::is_same<decltype(std::cosh((int)0)), double>::value), ""); in test_cosh() 150 static_assert((std::is_same<decltype(std::cosh((unsigned int)0)), double>::value), ""); in test_cosh() 151 static_assert((std::is_same<decltype(std::cosh((long)0)), double>::value), ""); in test_cosh() 152 static_assert((std::is_same<decltype(std::cosh((unsigned long)0)), double>::value), ""); in test_cosh() 153 static_assert((std::is_same<decltype(std::cosh((long long)0)), double>::value), ""); in test_cosh() 154 static_assert((std::is_same<decltype(std::cosh((unsigned long long)0)), double>::value), ""); in test_cosh() 155 static_assert((std::is_same<decltype(std::cosh((double)0)), double>::value), ""); in test_cosh() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | complex | 216 template<class T> complex<T> cosh (const complex<T>&); 1319 return complex<_Tp>(sinh(__x.real()) * cos(__x.imag()), cosh(__x.real()) * sin(__x.imag())); 1322 // cosh 1326 cosh(const complex<_Tp>& __x) 1336 return complex<_Tp>(cosh(__x.real()) * cos(__x.imag()), sinh(__x.real()) * sin(__x.imag())); 1355 _Tp __d(cosh(__2r) + cos(__2i)); 1437 return cosh(complex<_Tp>(-__x.imag(), __x.real()));
|
D | cmath | 74 floating_point cosh (arithmetic x); 774 // cosh 776 using ::cosh; 780 inline _LIBCPP_INLINE_VISIBILITY float cosh(float __x) _NOEXCEPT {return coshf(__x);} 781 inline _LIBCPP_INLINE_VISIBILITY long double cosh(long double __x) _NOEXCEPT {return coshl(__x);} 787 cosh(_A1 __x) _NOEXCEPT {return cosh((double)__x);}
|
D | valarray | 318 template<class T> valarray<T> cosh (const valarray<T>& x); 569 {return cosh(__x);} 4580 cosh(const _Expr& __x)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | math_h.pass.cpp | 68 static_assert((std::is_same<decltype(cosh((double)0)), double>::value), ""); in test_cosh() 71 assert(cosh(0) == 1); in test_cosh()
|
/ndk/sources/android/support/src/msun/ |
D | math_private.h | 680 #define __ieee754_cosh cosh
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 2475 $(call gen-test, numerics/complex.number/complex.transcendentals/cosh)
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 2466 $(call gen-test, numerics/complex.number/complex.transcendentals/cosh)
|