Searched refs:sinh (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-hyperbolic.js31 [Math.sinh, Math.cosh, Math.tanh, Math.asinh, Math.acosh, Math.atanh].
50 test_id(Math.sinh, Math.asinh, x);
51 test_id(Math.sinh, Math.asinh, -x);
58 [Math.sinh, Math.asinh, Math.tanh, Math.atanh].forEach(function(fun) {
64 [Math.sinh, Math.asinh].forEach(function(fun) {
88 assertEquals(0, Math.sinh(0));
89 assertEquals(-Infinity, 1/Math.sinh(-0));
105 assertEqualsDelta(74.20321057778875, Math.sinh(5), 1E-12);
106 assertEqualsDelta(-74.20321057778875, Math.sinh(-5), 1E-12);
142 // Implementation-specific tests for sinh
[all...]
/external/eigen/unsupported/doc/examples/
H A DMatrixSinh.cpp11 MatrixXf sinhA = A.sinh();
12 std::cout << "sinh(A) = \n" << sinhA << "\n\n";
17 // The matrix functions satisfy cosh^2(A) - sinh^2(A) = I,
19 std::cout << "cosh^2(A) - sinh^2(A) = \n" << coshA*coshA - sinhA*sinhA << "\n\n";
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DStemFunction.h80 res = std::sinh(x);
87 static Scalar sinh(Scalar x, int n) function in class:Eigen::StdStemFunctions
92 res = std::sinh(x);
H A DMatrixFunction.h574 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::sinh() const function in class:Eigen::MatrixBase
578 return MatrixFunctionReturnValue<Derived>(derived(), StdStemFunctions<ComplexScalar>::sinh);
H A DMatrixPower.h244 return RealScalar(2) * std::exp(RealScalar(0.5) * p * (logCurr + logPrev)) * std::sinh(p * w) / (curr - prev);
252 return 2 * std::exp(p * (std::log(curr) + std::log(prev)) / 2) * std::sinh(p * w) / (curr - prev);
/external/stlport/src/
H A Dcomplex_trig.cpp70 ::cos(z._M_re) * ::sinh(z._M_im));
89 -::sin(z._M_re) * ::sinh(z._M_im));
114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den);
130 // sinh
133 return complex<_Tp>(::sinh(z._M_re) * ::cos(z._M_im),
137 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>& z) function
140 _STLP_DECLSPEC complex<double> _STLP_CALL sinh(const complex<double>& z) function
144 _STLP_DECLSPEC complex<long double> _STLP_CALL sinh(const complex<long double>& z) function
153 ::sinh(z._M_re) * ::sin(z._M_im));
177 return complex<_Tp>(::sinh(re
[all...]
/external/stlport/stlport/stl/config/
H A D_como.h95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
/external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
H A Dsinh_valarray.pass.cpp16 // sinh(const valarray<T>& x);
46 std::valarray<T> v3 = sinh(v1);
/external/stlport/test/unit/
H A Dvalarray_test.cpp48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
H A Dcmath_test.cpp106 CPPUNIT_CHECK( are_equals(std::sinh(0.0), 0.0) );
131 CPPUNIT_CHECK( are_equals(std::sinh(0.0f), 0.0f) );
158 CPPUNIT_CHECK( are_equals(std::sinh(0.0l), 0.0l) );
/external/libcxx/test/numerics/complex.number/complex.transcendentals/
H A Dsin.pass.cpp44 std::complex<double> t2 = sinh(t1);
H A DAndroid.mk63 test_name := numerics/complex.number/complex.transcendentals/sinh
64 test_src := sinh.pass.cpp
H A Dsinh.pass.cpp14 // sinh(const complex<T>& x);
25 assert(sinh(c) == x);
42 std::complex<double> r = sinh(x[i]);
/external/freetype/src/autofit/
H A Dafscript.h96 SCRIPT( sinh, SINH,
H A Dafstyles.h137 STYLE_DEFAULT_INDIC( sinh, SINH, "Sinhala" )
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
/external/eigen/unsupported/test/
H A Dmatrix_power.cpp65 std::complex<T> ish(0, std::sinh((T)1));
73 ish = std::complex<T>(0, std::sinh(angle));
H A Dmatrix_exponential.cpp59 sh = std::sinh(angle);
H A Dmatrix_function.cpp132 VERIFY_IS_APPROX_ABS(A.sinh(), (A.exp() - (-A).exp()) / 2);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmath_semantic_attr.js789 'cosh', 'coth', 'csch', 'sech', 'sinh', 'tanh',
/external/ceres-solver/internal/ceres/
H A Djet_test.cc161 { // Check that cosh(x)*cosh(x) - sinh(x)*sinh(x) = 1
163 J w = sinh(x) * sinh(x);
/external/ceres-solver/include/ceres/
H A Djet.h389 inline double sinh (double x) { return std::sinh(x); } function in namespace:ceres
466 // sinh(a + h) ~= sinh(a) + cosh(a) h
468 Jet<T, N> sinh(const Jet<T, N>& f) { function in namespace:ceres
469 return Jet<T, N>(sinh(f.a), cosh(f.a) * f.v);
472 // cosh(a + h) ~= cosh(a) + sinh(a) h
475 return Jet<T, N>(cosh(f.a), sinh(f.a) * f.v);
623 template<typename T, int N> inline Jet<T, N> ei_sinh(const Jet<T, N>& x) { return sinh(x); } // NOLINT
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c163 double sinh(double);
294 F(sin), F(sinf), F(sinl), F(sinh), F(sinhf),
462 // CHECK-NOERRNO: declare double @sinh(double) [[NUW]]
/external/deqp/framework/delibs/debase/
H A DdeMath.h143 DE_INLINE float deFloatSinh (float a) { return (float)sinh(a); }
157 DE_INLINE double deSinh (double a) { return sinh(a); }
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlmathlib.c37 lua_pushnumber(L, l_mathop(sinh)(luaL_checknumber(L, 1)));
259 {"sinh", math_sinh},

Completed in 2863 milliseconds

12