Home
last modified time | relevance | path

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

12

/external/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()
/external/stlport/stlport/stl/config/
D_como.h95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DStemFunction.h80 res = std::sinh(x); in cosh()
87 static Scalar sinh(Scalar x, int n) in sinh() function
92 res = std::sinh(x); in sinh()
DMatrixFunction.h573 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::sinh() const
577 return MatrixFunctionReturnValue<Derived>(derived(), StdStemFunctions<ComplexScalar>::sinh);
/external/stlport/test/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()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DStrictMathTest.java1299 assertTrue(Double.isNaN(StrictMath.sinh(Double.NaN))); in test_sinh_D()
1302 .sinh(Double.POSITIVE_INFINITY), 0D); in test_sinh_D()
1305 .sinh(Double.NEGATIVE_INFINITY), 0D); in test_sinh_D()
1307 .doubleToLongBits(StrictMath.sinh(0.0))); in test_sinh_D()
1309 .doubleToLongBits(StrictMath.sinh(+0.0))); in test_sinh_D()
1311 .doubleToLongBits(StrictMath.sinh(-0.0))); in test_sinh_D()
1314 Double.POSITIVE_INFINITY, StrictMath.sinh(1234.56), 0D); in test_sinh_D()
1316 Double.NEGATIVE_INFINITY, StrictMath.sinh(-1234.56), 0D); in test_sinh_D()
1318 1.0000000000001666E-6, StrictMath.sinh(0.000001), 0D); in test_sinh_D()
1320 -1.0000000000001666E-6, StrictMath.sinh(-0.000001), 0D); in test_sinh_D()
[all …]
DMathTest.java1707 assertTrue("Should return NaN", Double.isNaN(Math.sinh(Double.NaN))); in test_sinh_D()
1709 Double.POSITIVE_INFINITY, Math.sinh(Double.POSITIVE_INFINITY), 0D); in test_sinh_D()
1711 Double.NEGATIVE_INFINITY, Math.sinh(Double.NEGATIVE_INFINITY), 0D); in test_sinh_D()
1713 .sinh(0.0))); in test_sinh_D()
1715 .doubleToLongBits(Math.sinh(+0.0))); in test_sinh_D()
1717 .doubleToLongBits(Math.sinh(-0.0))); in test_sinh_D()
1720 Double.POSITIVE_INFINITY, Math.sinh(1234.56), 0D); in test_sinh_D()
1722 Double.NEGATIVE_INFINITY, Math.sinh(-1234.56), 0D); in test_sinh_D()
1724 1.0000000000001666E-6, Math.sinh(0.000001), 0D); in test_sinh_D()
1726 -1.0000000000001666E-6, Math.sinh(-0.000001), 0D); in test_sinh_D()
[all …]
/external/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>&);
/external/skia/src/core/
DSkCordic.cpp191 int32_t sinh = 0; in SkCordicExp() local
192 SkHyperbolic(&cosh, &sinh, &a, 0); in SkCordicExp()
193 return cosh + sinh; in SkCordicExp()
DSkPath.cpp1338 SkScalar sinh = SkPoint::CrossProduct(before, after); in arcTo() local
1340 if (SkScalarNearlyZero(sinh)) { // angle is too tight in arcTo()
1345 SkScalar dist = SkScalarMulDiv(radius, SK_Scalar1 - cosh, sinh); in arcTo()
1355 if (sinh > 0) { in arcTo()
/external/skia/legacy/src/core/
DSkCordic.cpp193 int32_t sinh = 0; in SkCordicExp() local
194 SkHyperbolic(&cosh, &sinh, &a, 0); in SkCordicExp()
195 return cosh + sinh; in SkCordicExp()
DSkPath.cpp917 SkScalar sinh = SkPoint::CrossProduct(before, after); in arcTo() local
919 if (SkScalarNearlyZero(sinh)) { // angle is too tight in arcTo()
924 SkScalar dist = SkScalarMulDiv(radius, SK_Scalar1 - cosh, sinh); in arcTo()
934 if (sinh > 0) { in arcTo()
/external/eigen/unsupported/doc/examples/
DMatrixSinh.cpp11 MatrixXf sinhA = A.sinh(); in main()
/external/eigen/unsupported/Eigen/
DMatrixFunctions40 * - \ref matrixbase_sinh "MatrixBase::sinh()", for computing the matrix hyperbolic sine
102 \sa \ref matrixbase_sinh "sinh()" for an example.
293 \section matrixbase_sinh MatrixBase::sinh()
298 MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::sinh() const
302 \returns expression representing \f$ \sinh(M) \f$
304 This function calls \ref matrixbase_matrixfunction "matrixFunction()" with StdStemFunctions::sinh().
/external/llvm/test/Transforms/SimplifyLibCalls/
Dwin-math.ll202 declare double @sinh(double %x)
206 ; WIN32: double @sinh
208 %2 = call double @sinh(double %1)
/external/eigen/unsupported/test/
Dmatrix_exponential.cpp66 sh = std::sinh(angle); in test2dHyperbolicRotation()
Dmatrix_function.cpp133 VERIFY_IS_APPROX_ABS(A.sinh(), (A.exp() - (-A).exp()) / 2); in testHyperbolicFunctions()
/external/llvm/include/llvm/Target/
DTargetLibraryInfo.h475 sinh, enumerator
/external/clang/lib/Headers/
Dtgmath.h361 __tg_sinh(double __x) {return sinh(__x);} in __tg_sinh()
379 #undef sinh
380 #define sinh(__x) __tg_sinh(__tg_promote1((__x))(__x)) macro
/external/fdlibm/
Dreadme145 w_sinh.c sinh
/external/icu4c/data/lang/
Dcs.txt465 si{"sinhálština"}
653 Sinh{"sinhálské"}
/external/eigen/Eigen/src/Core/
DMatrixBase.h452 const MatrixFunctionReturnValue<Derived> sinh() const;
/external/llvm/lib/Analysis/
DConstantFolding.cpp1383 else if (Name == "sinh" && TLI->has(LibFunc::sinh)) in ConstantFoldCall()
1384 return ConstantFoldFP(sinh, V, Ty); in ConstantFoldCall()

12