/external/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()
|
/external/stlport/stlport/stl/config/ |
D | _como.h | 95 # define sinhl sinh 113 # define sinhf sinh 114 # define sinhl sinh 167 # define sinhl sinh
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | StemFunction.h | 80 res = std::sinh(x); in cosh() 87 static Scalar sinh(Scalar x, int n) in sinh() function 92 res = std::sinh(x); in sinh()
|
D | MatrixFunction.h | 573 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::sinh() const 577 return MatrixFunctionReturnValue<Derived>(derived(), StdStemFunctions<ComplexScalar>::sinh);
|
/external/stlport/test/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()
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | StrictMathTest.java | 1299 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 …]
|
D | MathTest.java | 1707 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.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>&);
|
/external/skia/src/core/ |
D | SkCordic.cpp | 191 int32_t sinh = 0; in SkCordicExp() local 192 SkHyperbolic(&cosh, &sinh, &a, 0); in SkCordicExp() 193 return cosh + sinh; in SkCordicExp()
|
D | SkPath.cpp | 1338 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/ |
D | SkCordic.cpp | 193 int32_t sinh = 0; in SkCordicExp() local 194 SkHyperbolic(&cosh, &sinh, &a, 0); in SkCordicExp() 195 return cosh + sinh; in SkCordicExp()
|
D | SkPath.cpp | 917 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/ |
D | MatrixSinh.cpp | 11 MatrixXf sinhA = A.sinh(); in main()
|
/external/eigen/unsupported/Eigen/ |
D | MatrixFunctions | 40 * - \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/ |
D | win-math.ll | 202 declare double @sinh(double %x) 206 ; WIN32: double @sinh 208 %2 = call double @sinh(double %1)
|
/external/eigen/unsupported/test/ |
D | matrix_exponential.cpp | 66 sh = std::sinh(angle); in test2dHyperbolicRotation()
|
D | matrix_function.cpp | 133 VERIFY_IS_APPROX_ABS(A.sinh(), (A.exp() - (-A).exp()) / 2); in testHyperbolicFunctions()
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 475 sinh, enumerator
|
/external/clang/lib/Headers/ |
D | tgmath.h | 361 __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/ |
D | readme | 145 w_sinh.c sinh
|
/external/icu4c/data/lang/ |
D | cs.txt | 465 si{"sinhálština"} 653 Sinh{"sinhálské"}
|
/external/eigen/Eigen/src/Core/ |
D | MatrixBase.h | 452 const MatrixFunctionReturnValue<Derived> sinh() const;
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1383 else if (Name == "sinh" && TLI->has(LibFunc::sinh)) in ConstantFoldCall() 1384 return ConstantFoldFP(sinh, V, Ty); in ConstantFoldCall()
|