HomeSort by relevance Sort by last modified time
    Searched refs:sinh (Results 26 - 50 of 140) sorted by null

12 3 4 5 6

  /bionic/libm/x86_64/
e_sinh.S 36 // sinh(x)=(exp(x)-exp(-x))/2
55 // For |x| in [1/8, 3*2^7), sinh(x) is formed as
69 // sinh(NaN) = quiet NaN, and raise invalid exception
70 // sinh(+/-INF) = +/-INF
71 // sinh(x) = x for subnormals
72 // for finite argument, only sinh(0)=0 is exact
74 // sinh(x) overflows for x >
80 # -- Begin sinh
81 ENTRY(sinh) function
303 END(sinh)
    [all...]
  /art/test/123-inline-execute2/src/
Main.java 26 System.out.println("Math.sinh(" + d + ") = "
27 + String.format(Locale.US, "%.12f", Math.sinh(d)));
82 System.out.println("StrictMath.sinh(" + d + ") = " + StrictMath.sinh(d));
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
sinh.pass.cpp 14 // sinh(const complex<T>& x);
25 assert(sinh(c) == x);
40 std::complex<double> r = sinh(testcases[i]);
  /external/tensorflow/tensorflow/python/kernel_tests/
cwise_ops_unary_test.py 207 self._compareBoth(x, np.sinh, math_ops.sinh)
264 self._compareBoth(x, np.sinh, math_ops.sinh)
315 self._compareBoth(x, np.sinh, math_ops.sinh)
439 self._compareCpu(x, np.sinh, math_ops.sinh)
484 self._compareCpu(x, np.sinh, math_ops.sinh)
    [all...]
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 80 qpoints->pSinh = sinh;
  /bionic/tests/headers/posix/
tgmath_h.c 66 TGMATHC(sinh);
  /device/linaro/bootloader/edk2/StdLib/Include/
math.h 183 double sinh(double Arg);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 297 using std::sinh;
303 return RealScalar(2) * exp(RealScalar(0.5) * p * (logCurr + logPrev)) * sinh(p * w) / (curr - prev);
312 using std::sinh;
315 return 2 * exp(p * (log(curr) + log(prev)) / 2) * sinh(p * w) / (curr - prev);
  /external/eigen/unsupported/test/
matrix_power.cpp 38 std::complex<T> ish(0, std::sinh((T)1));
46 ish = std::complex<T>(0, std::sinh(angle));
  /external/freetype/src/autofit/
afscript.h 300 SCRIPT( sinh, SINH,
  /external/eigen/test/
array.cpp 234 VERIFY_IS_APPROX(m1.sinh(), sinh(m1));
269 VERIFY_IS_APPROX(sinh(m1), 0.5*(exp(m1)-exp(-m1)));
346 VERIFY_IS_APPROX(m1.sinh(), sinh(m1));
369 VERIFY_IS_APPROX(sinh(m1), 0.5*(exp(m1)-exp(-m1)));
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 658 EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(sinh,
659 using std::sinh;
661 return Eigen::MakeAutoDiffScalar(sinh(x.value()),x.derivatives() * cosh(x.value()));)
664 using std::sinh;
666 return Eigen::MakeAutoDiffScalar(cosh(x.value()),x.derivatives() * sinh(x.value()));)
  /external/eigen/Eigen/src/Core/
MathFunctions.h 1223 T sinh(const T &x) { function in namespace:Eigen::numext
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
    [all...]
GlobalFunctions.h 66 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(sinh,scalar_sinh_op,hyperbolic sine,\sa ArrayBase::sinh)
  /bionic/libc/include/
math.h 122 double sinh(double __x);
124 long double sinhl(long double __x) __RENAME_LDBL(sinh, 3, 21);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_math.py     [all...]
  /external/clang/test/CodeGen/
libcall-declarations.c 163 double sinh(double);
294 F(sin), F(sinf), F(sinl), F(sinh), F(sinhf),
462 // CHECK-NOERRNO: declare double @sinh(double) [[NUW]]
  /external/deqp/framework/delibs/debase/
deMath.h 146 DE_INLINE float deFloatSinh (float a) { return (float)sinh(a); }
160 DE_INLINE double deSinh (double a) { return sinh(a); }
  /external/libxaac/decoder/armv8/
ixheaacd_qmf_dec_armv8.c 328 WORD16 cosh, sinh; local
334 sinh = *tcos++;
336 ixheaacd_mult32x16in32_shl(im, sinh));
338 ixheaacd_mult32x16in32_shl(re, sinh));
1127 WORD32 cosh, sinh; local
    [all...]
  /external/python/cpython2/Lib/test/
test_math.py     [all...]
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 165 qpoints->pSinh = sinh;
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 179 qpoints->pSinh = sinh;
  /art/runtime/arch/mips64/
entrypoints_init_mips64.cc 178 qpoints->pSinh = sinh;
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 103 qpoints->pSinh = sinh;
  /art/test/988-method-trace/src/art/
Test988Intrinsics.java 107 java.lang.Math.sinh(0.0);

Completed in 2506 milliseconds

12 3 4 5 6