/cts/tests/src/android/renderscript/cts/ |
cosh_f32.rs | 5 *out = cosh(*in); 9 *out = cosh(*in); 13 *out = cosh(*in); 17 *out = cosh(*in);
|
/external/eigen/unsupported/doc/examples/ |
MatrixSinh.cpp | 14 MatrixXf coshA = A.cosh(); 15 std::cout << "cosh(A) = \n" << coshA << "\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";
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_cosh.c | 19 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2 20 * 1. Replace x by |x| (cosh(x) = cosh(-x)). 23 * 0 <= x <= ln2/2 : cosh(x) := 1 + ------------------- 27 * ln2/2 <= x <= 22 : cosh(x) := ------------------- 29 * 22 <= x <= lnovft : cosh(x) := exp(x)/2 30 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2) 31 * ln2ovft < x : cosh(x) := huge*huge (overflow) 34 * cosh(x) is |x| if x is +INF, -INF, or NaN. 35 * only cosh(0)=1 is exact for finite x [all...] |
s_ccosh.c | 30 * cosh(z) = cosh(x+iy) 31 * = cosh(x) cos(y) + i sinh(x) sin(y). 65 return (cpack(cosh(x), x * y)); 67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y))); 69 /* |x| >= 22, so cosh(x) ~= exp(|x|) */ 86 * cosh(+-0 +- I Inf) = dNaN + I sign(d(+-0, dNaN))0. 90 * cosh(+-0 +- I NaN) = d(NaN) + I sign(d(+-0, NaN))0. 98 * cosh(+-Inf +- I 0) = +Inf + I (+-)(+-)0. 100 * cosh(NaN +- I 0) = d(NaN) + I sign(d(NaN, +-0))0 [all...] |
s_ctanh.c | 41 * rho = cosh(x) 45 * tanh(z) = sinh(z) / cosh(z) 47 * sinh(x) cos(y) + i cosh(x) sin(y) 49 * cosh(x) cos(y) + i sinh(x) sin(y) 51 * cosh(x) sinh(x) / cos^2(y) + i tan(y) 132 rho = sqrt(1 + s * s); /* = cosh(x) */
|
e_coshf.c | 40 if (ix<0x39800000) return one; /* cosh(tiny) = 1 */ 57 /* |x| > overflowthresold, cosh(x) overflow */
|
/external/fdlibm/ |
w_cosh.c | 21 double ieee_cosh(double x) /* wrapper cosh */ 23 double ieee_cosh(x) /* wrapper cosh */ 34 return __kernel_standard(x,x,5); /* cosh overflow */
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
StemFunction.h | 72 static Scalar cosh(Scalar x, int n) function in class:Eigen::StdStemFunctions 77 res = std::cosh(x); 95 res = std::cosh(x);
|
/external/stlport/test/unit/ |
valarray_test.cpp | 46 tmp = cosh(darray); 72 tmp = cosh(farray); 99 tmp = cosh(ldarray);
|
/ndk/tests/device/test-gnustl-full/unit/ |
valarray_test.cpp | 46 tmp = cosh(darray); 72 tmp = cosh(farray); 99 tmp = cosh(ldarray);
|
/ndk/tests/device/test-stlport/unit/ |
valarray_test.cpp | 46 tmp = cosh(darray); 72 tmp = cosh(farray); 99 tmp = cosh(ldarray);
|
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/ |
cosh.ir | 1 ((function cosh
|
/external/mesa3d/src/glsl/builtins/ir/ |
cosh.ir | 1 ((function cosh
|
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/mathmaps/functions/ |
hyperbolic.json | 9 "key": "cosh", 10 "names": ["cosh"]
|
/external/stlport/src/ |
complex_trig.cpp | 69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im), 88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im), 113 _Tp den = ::cos(re2) + ::cosh(im2); 134 ::cosh(z._M_re) * ::sin(z._M_im)); 149 // cosh 152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im), 156 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>& z) function 159 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>& z) function 163 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>& z) function 176 _Tp den = ::cosh(re2) + ::cos(im2) [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
complex_trig.cpp | 69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im), 88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im), 113 _Tp den = ::cos(re2) + ::cosh(im2); 134 ::cosh(z._M_re) * ::sin(z._M_im)); 149 // cosh 152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im), 156 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>& z) function 159 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>& z) function 163 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>& z) function 176 _Tp den = ::cosh(re2) + ::cos(im2) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
cosh_valarray.pass.cpp | 16 // cosh(const valarray<T>& x); 46 std::valarray<T> v3 = cosh(v1);
|
/prebuilts/ndk/8/platforms/android-14/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-14/arch-x86/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/lib/ |
libm.so | |