HomeSort by relevance Sort by last modified time
    Searched refs:sinh (Results 51 - 75 of 274) sorted by null

1 23 4 5 6 7 8 91011

  /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...]
  /external/freetype/src/autofit/
afstyles.h 159 STYLE_DEFAULT_INDIC( sinh, SINH, "Sinhala" )
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 82 IMPORT_F32_FN_F32(sinh)
  /external/v8/third_party/fdlibm/
fdlibm.js 716 // Math.sinh
718 // mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
719 // 1. Replace x by |x| (sinh(-x) = -sinh(x)).
722 // 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
725 // 22 <= x <= lnovft : sinh(x) := exp(x)/2
726 // lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
727 // ln2ovft < x : sinh(x) := x*shuge (overflow)
730 // sinh(x) is |x| if x is +Infinity, -Infinity, or NaN.
731 // only sinh(0)=0 is exact for finite x
    [all...]
  /external/eigen/unsupported/test/
matrix_power.cpp 65 std::complex<T> ish(0, std::sinh((T)1));
73 ish = std::complex<T>(0, std::sinh(angle));
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
sinh.pass.cpp 14 // sinh(const complex<T>& x);
25 assert(sinh(c) == x);
42 std::complex<double> r = sinh(x[i]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
sinh.pass.cpp 14 // sinh(const complex<T>& x);
25 assert(sinh(c) == x);
42 std::complex<double> r = sinh(x[i]);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StrictMathTest.java     [all...]
MathTest.java     [all...]
  /ndk/sources/android/support/src/
math_support.c 64 __attribute__((weak)) long double sinhl(long double x) { return sinh((double)x); }
  /external/ceres-solver/internal/ceres/
jet_test.cc 161 { // Check that cosh(x)*cosh(x) - sinh(x)*sinh(x) = 1
163 J w = sinh(x) * sinh(x);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 115 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 126 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 126 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 115 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 115 #define sinh(z) __TGMATH_CPLX(z, sinh, csinh) macro
  /external/ceres-solver/include/ceres/
jet.h 389 inline double sinh (double x) { return std::sinh(x); } function in namespace:ceres
466 // sinh(a + h) ~= sinh(a) + cosh(a) h
468 Jet<T, N> sinh(const Jet<T, N>& f) { function in namespace:ceres
469 return Jet<T, N>(sinh(f.a), cosh(f.a) * f.v);
472 // cosh(a + h) ~= cosh(a) + sinh(a) h
475 return Jet<T, N>(cosh(f.a), sinh(f.a) * f.v);
623 template<typename T, int N> inline Jet<T, N> ei_sinh(const Jet<T, N>& x) { return sinh(x); } // NOLINT
  /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 145 DE_INLINE float deFloatSinh (float a) { return (float)sinh(a); }
159 DE_INLINE double deSinh (double a) { return sinh(a); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 75 __MATHCALL (sinh,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 283 #define sinh(Val) __TGMATH_UNARY_REAL_IMAG (Val, sinh, csinh) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathcalls.h 75 __MATHCALL (sinh,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 283 #define sinh(Val) __TGMATH_UNARY_REAL_IMAG (Val, sinh, csinh) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathcalls.h 75 __MATHCALL (sinh,, (_Mdouble_ __x));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py     [all...]

Completed in 2038 milliseconds

1 23 4 5 6 7 8 91011