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

12 3 4 5 6 7 8 91011

  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sinh.c 19 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
20 * 1. Replace x by |x| (sinh(-x) = -sinh(x)).
23 * 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
26 * 22 <= x <= lnovft : sinh(x) := exp(x)/2
27 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
28 * ln2ovft < x : sinh(x) := x*shuge (overflow)
31 * sinh(x) is |x| if x is +INF, -INF, or NaN.
32 * only sinh(0)=0 is exact for finite x.
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact *
    [all...]
s_csinh.c 30 * sinh(z) = sinh(x+iy)
31 * = sinh(x) cos(y) + i cosh(x) sin(y).
65 return (cpack(sinh(x), y));
67 return (cpack(sinh(x) * cos(y), cosh(x) * sin(y)));
86 * sinh(+-0 +- I Inf) = sign(d(+-0, dNaN))0 + I dNaN.
90 * sinh(+-0 +- I NaN) = sign(d(+-0, NaN))0 + I d(NaN).
98 * sinh(+-Inf +- I 0) = +-Inf + I +-0.
100 * sinh(NaN +- I 0) = d(NaN) + I +-0.
109 * sinh(x +- I Inf) = dNaN + I dNaN
    [all...]
s_ctanh.c 40 * s = sinh(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)
53 * 1 + sinh^2(x) / cos^2(y)
119 * approximation sinh^2(huge) ~= exp(2*huge) / 4.
131 s = sinh(x);
s_ccosh.c 31 * = cosh(x) cos(y) + i sinh(x) sin(y).
67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y)));
  /external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
sinh_valarray.pass.cpp 16 // sinh(const valarray<T>& x);
46 std::valarray<T> v3 = sinh(v1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
sinh_valarray.pass.cpp 16 // sinh(const valarray<T>& x);
46 std::valarray<T> v3 = sinh(v1);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 527 * <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(a + bi) = sinh(a)cos(b)) + cosh(a)sin(b)i</code></pre
746 public Complex sinh() { method in class:Complex
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
cmath_test.cpp 106 CPPUNIT_CHECK( are_equals(std::sinh(0.0), 0.0) );
131 CPPUNIT_CHECK( are_equals(std::sinh(0.0f), 0.0f) );
158 CPPUNIT_CHECK( are_equals(std::sinh(0.0l), 0.0l) );
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
cmath_test.cpp 106 CPPUNIT_CHECK( are_equals(std::sinh(0.0), 0.0) );
131 CPPUNIT_CHECK( are_equals(std::sinh(0.0f), 0.0f) );
158 CPPUNIT_CHECK( are_equals(std::sinh(0.0l), 0.0l) );
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
sin.pass.cpp 44 std::complex<double> t2 = sinh(t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
sin.pass.cpp 44 std::complex<double> t2 = sinh(t1);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 493 assertTrue("Should return NaN", Double.isNaN(Math.sinh(Double.NaN)));
495 Double.POSITIVE_INFINITY, Math.sinh(Double.POSITIVE_INFINITY), 0D);
497 Double.NEGATIVE_INFINITY, Math.sinh(Double.NEGATIVE_INFINITY), 0D);
499 .sinh(0.0)));
501 .doubleToLongBits(Math.sinh(+0.0)));
503 .doubleToLongBits(Math.sinh(-0.0)));
506 Double.POSITIVE_INFINITY, Math.sinh(1234.56), 0D);
508 Double.NEGATIVE_INFINITY, Math.sinh(-1234.56), 0D);
510 1.0000000000001666E-6, Math.sinh(0.000001), 0D);
512 -1.0000000000001666E-6, Math.sinh(-0.000001), 0D)
    [all...]
OldAndroidStrictMathTest.java 510 assertTrue(Double.isNaN(StrictMath.sinh(Double.NaN)));
513 .sinh(Double.POSITIVE_INFINITY), 0D);
516 .sinh(Double.NEGATIVE_INFINITY), 0D);
518 .doubleToLongBits(StrictMath.sinh(0.0)));
520 .doubleToLongBits(StrictMath.sinh(+0.0)));
522 .doubleToLongBits(StrictMath.sinh(-0.0)));
525 Double.POSITIVE_INFINITY, StrictMath.sinh(1234.56), 0D);
527 Double.NEGATIVE_INFINITY, StrictMath.sinh(-1234.56), 0D);
529 1.0000000000001666E-6, StrictMath.sinh(0.000001), 0D);
531 -1.0000000000001666E-6, StrictMath.sinh(-0.000001), 0D)
    [all...]
  /external/freetype/src/autofit/
afscript.h 112 SCRIPT( sinh, SINH,
  /libcore/luni/src/main/native/
java_lang_Math.cpp 83 return sinh(a);
143 NATIVE_METHOD(Math, sinh, "!(D)D"),
  /bionic/libm/x86/
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 >
95 # -- Begin sinh
96 ENTRY(sinh) function
323 END(sinh)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
378 _STLP_DMATH_INLINE(sinh)
449 _STLP_DEF_MATH_INLINE(sinh, sinh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
590 using ::sinh;

Completed in 2913 milliseconds

12 3 4 5 6 7 8 91011