Searched defs:cosh (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>
551 return createComplex(FastMath.cos(real) * MathUtils.cosh(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>
573 * cosh(1 &plusmn; INFINITY i) = NaN + NaN i
574 * cosh(&plusmn;INFINITY + i) = INFINITY &plusmn; INFINITY i
575 * cosh(&plusmn;INFINITY &plusmn; INFINITY i) = NaN + NaN i</code></pre></p>
580 public Complex cosh() { method in class:Complex
[all...]
/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h57 __DEVICE__ float cosh(float __x) { return ::coshf(__x); } function
H A Dtgmath.h324 // cosh
332 __tg_cosh(double __x) {return cosh(__x);}
350 #undef cosh macro
351 #define cosh(__x) __tg_cosh(__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()
300 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_sinh">Math functions</a>, sin(), tanh(), cosh()
314 * \sa <a href="group__CoeffwiseMathFunctions.html#cwisetable_cosh">Math functions</a>, tan(), sinh(), cosh()
318 cosh() const function
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMathUtils.java407 public static double cosh(double x) { method in class:MathUtils
H A DFastMath.java284 public static double cosh(double x) { method in class:FastMath
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h571 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::cosh() const function in class:Eigen::MatrixBase
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h1208 T cosh(const T &x) { function in namespace:Eigen::numext
1209 EIGEN_USING_STD_MATH(cosh);
1210 return cosh(x);
1215 float cosh(const float &x) { return ::coshf(x); } function in namespace:Eigen::numext
1218 double cosh(const double &x) { return ::cosh(x); } function in namespace:Eigen::numext
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp39 Ambiguous cosh(Ambiguous){ return Ambiguous(); } function
229 static_assert((std::is_same<decltype(cosh((float)0)), float>::value), "");
230 static_assert((std::is_same<decltype(cosh((bool)0)), double>::value), "");
231 static_assert((std::is_same<decltype(cosh((unsigned short)0)), double>::value), "");
232 static_assert((std::is_same<decltype(cosh((int)0)), double>::value), "");
233 static_assert((std::is_same<decltype(cosh((unsigned int)0)), double>::value), "");
234 static_assert((std::is_same<decltype(cosh((long)0)), double>::value), "");
235 static_assert((std::is_same<decltype(cosh((unsigned long)0)), double>::value), "");
236 static_assert((std::is_same<decltype(cosh((long long)0)), double>::value), "");
237 static_assert((std::is_same<decltype(cosh((unsigne
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp40 Ambiguous cosh(Ambiguous){ return Ambiguous(); } function
231 static_assert((std::is_same<decltype(std::cosh((float)0)), float>::value), "");
232 static_assert((std::is_same<decltype(std::cosh((bool)0)), double>::value), "");
233 static_assert((std::is_same<decltype(std::cosh((unsigned short)0)), double>::value), "");
234 static_assert((std::is_same<decltype(std::cosh((int)0)), double>::value), "");
235 static_assert((std::is_same<decltype(std::cosh((unsigned int)0)), double>::value), "");
236 static_assert((std::is_same<decltype(std::cosh((long)0)), double>::value), "");
237 static_assert((std::is_same<decltype(std::cosh((unsigned long)0)), double>::value), "");
238 static_assert((std::is_same<decltype(std::cosh((long long)0)), double>::value), "");
239 static_assert((std::is_same<decltype(std::cosh((unsigne
[all...]
/external/v8/src/base/
H A Dieee754.cc2570 * Math.cosh
2572 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
2573 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
2576 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
2580 * ln2/2 <= x <= 22 : cosh(x) := -------------------
2582 * 22 <= x <= lnovft : cosh(x) := exp(x)/2
2583 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2)
2584 * ln2ovft < x : cosh(x) := huge*huge (overflow)
2587 * cosh(
2590 double cosh(double x) { function in namespace:v8::base::ieee754
[all...]
/external/swiftshader/src/Shader/
H A DShaderCore.cpp1470 void ShaderCore::cosh(Vector4f &dst, const Vector4f &src, bool pp) function in class:sw::ShaderCore
/external/skia/src/core/
H A DSkPath.cpp1486 SkScalar cosh = SkPoint::DotProduct(before, after); local
1494 SkScalar dist = SkScalarAbs(radius * (1 - cosh) / sinh);
1500 SkScalar weight = SkScalarSqrt(SK_ScalarHalf + cosh * SK_ScalarHalf);
/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 472 milliseconds