Searched defs:sinh (Results 1 - 17 of 17) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java527 * <code> cos(a + bi) = cos(a)cosh(b) - sin(a)sinh(b)i</code></pre>
530 * {@link MathUtils#cosh} and {@link MathUtils#sinh}.</p>
552 -FastMath.sin(real) * MathUtils.sinh(imaginary));
561 * <code> cosh(a + bi) = cosh(a)cos(b) + sinh(a)sin(b)i</code></pre>
564 * {@link MathUtils#cosh} and {@link MathUtils#sinh}.</p>
586 MathUtils.sinh(real) * FastMath.sin(imaginary));
693 * <code> sin(a + bi) = sin(a)cosh(b) - cos(a)sinh(b)i</code></pre>
696 * {@link MathUtils#cosh} and {@link MathUtils#sinh}.</p>
718 FastMath.cos(real) * MathUtils.sinh(imaginary));
727 * <code> sinh(
746 public Complex sinh() { method in class:Complex
[all...]
/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h141 __DEVICE__ float sinh(float __x) { return ::sinhf(__x); } function
H A Dtgmath.h353 // sinh
361 __tg_sinh(double __x) {return sinh(__x);}
379 #undef sinh macro
380 #define sinh(__x) __tg_sinh(__tg_promote1((__x))(__x)) macro
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h286 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_tanh">Math functions</a>, tan(), sinh(), cosh()
304 sinh() const function
314 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_cosh">Math functions</a>, tan(), sinh(), cosh()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMathUtils.java1720 public static double sinh(double x) { method in class:MathUtils
H A DFastMath.java338 public static double sinh(double x) { method in class:FastMath
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h563 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::sinh() const function in class:Eigen::MatrixBase
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h1223 T sinh(const T &x) { function in namespace:Eigen::numext
1224 EIGEN_USING_STD_MATH(sinh);
1225 return sinh(x);
1230 float sinh(const float &x) { return ::sinhf(x); } function in namespace:Eigen::numext
1233 double sinh(const double &x) { return ::sinh(x); } function in namespace:Eigen::numext
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp51 Ambiguous sinh(Ambiguous){ return Ambiguous(); } function
467 static_assert((std::is_same<decltype(sinh((float)0)), float>::value), "");
468 static_assert((std::is_same<decltype(sinh((bool)0)), double>::value), "");
469 static_assert((std::is_same<decltype(sinh((unsigned short)0)), double>::value), "");
470 static_assert((std::is_same<decltype(sinh((int)0)), double>::value), "");
471 static_assert((std::is_same<decltype(sinh((unsigned int)0)), double>::value), "");
472 static_assert((std::is_same<decltype(sinh((long)0)), double>::value), "");
473 static_assert((std::is_same<decltype(sinh((unsigned long)0)), double>::value), "");
474 static_assert((std::is_same<decltype(sinh((long long)0)), double>::value), "");
475 static_assert((std::is_same<decltype(sinh((unsigne
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp52 Ambiguous sinh(Ambiguous){ return Ambiguous(); } function
469 static_assert((std::is_same<decltype(std::sinh((float)0)), float>::value), "");
470 static_assert((std::is_same<decltype(std::sinh((bool)0)), double>::value), "");
471 static_assert((std::is_same<decltype(std::sinh((unsigned short)0)), double>::value), "");
472 static_assert((std::is_same<decltype(std::sinh((int)0)), double>::value), "");
473 static_assert((std::is_same<decltype(std::sinh((unsigned int)0)), double>::value), "");
474 static_assert((std::is_same<decltype(std::sinh((long)0)), double>::value), "");
475 static_assert((std::is_same<decltype(std::sinh((unsigned long)0)), double>::value), "");
476 static_assert((std::is_same<decltype(std::sinh((long long)0)), double>::value), "");
477 static_assert((std::is_same<decltype(std::sinh((unsigne
[all...]
/external/v8/src/base/
H A Dieee754.cc2635 * Math.sinh
2637 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
2638 * 1. Replace x by |x| (sinh(-x) = -sinh(x)).
2641 * 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
2644 * 22 <= x <= lnovft : sinh(x) := exp(x)/2
2645 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
2646 * ln2ovft < x : sinh(x) := x*shuge (overflow)
2649 * sinh(x) is |x| if x is +Infinity, -Infinity, or NaN.
2650 * only sinh(
2652 double sinh(double x) { function in namespace:v8::base::ieee754
[all...]
/external/swiftshader/src/Shader/
H A DShaderCore.cpp1478 void ShaderCore::sinh(Vector4f &dst, const Vector4f &src, bool pp) function in class:sw::ShaderCore
/external/skia/src/core/
H A DSkPath.cpp1487 SkScalar sinh = SkPoint::CrossProduct(before, after); local
1489 if (SkScalarNearlyZero(sinh)) { // angle is too tight
1494 SkScalar dist = SkScalarAbs(radius * (1 - cosh) / sinh);
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 420 milliseconds