HomeSort by relevance Sort by last modified time
    Searched full:sinh (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /bionic/libm/src/
e_sinh.c 20 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
21 * 1. Replace x by |x| (sinh(-x) = -sinh(x)).
24 * 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
27 * 22 <= x <= lnovft : sinh(x) := exp(x)/2
28 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
29 * ln2ovft < x : sinh(x) := x*shuge (overflow)
32 * sinh(x) is |x| if x is +INF, -INF, or NaN.
33 * only sinh(0)=0 is exact for finite x.
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact *
    [all...]
e_sinhf.c 42 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
58 /* |x| > overflowthresold, sinh(x) overflow */
  /bionic/libm/man/
sinh.3 32 .\" from: @(#)sinh.3 6.6 (Berkeley) 4/19/91
33 .\" $FreeBSD: src/lib/msun/man/sinh.3,v 1.12 2005/01/14 23:28:28 das Exp $
35 .Dt SINH 3
38 .Nm sinh ,
46 .Fn sinh "double x"
51 .Fn sinh
69 .Fn sinh
atan.3 77 .Xr sinh 3 ,
cos.3 76 .Xr sinh 3 ,
cosh.3 65 .Xr sinh 3 ,
sin.3 75 .Xr sinh 3 ,
tan.3 75 .Xr sinh 3 ,
tanh.3 74 .Xr sinh 3 ,
  /external/fdlibm/
w_sinh.c 21 double ieee_sinh(double x) /* wrapper sinh */
23 double ieee_sinh(x) /* wrapper sinh */
34 return __kernel_standard(x,x,25); /* sinh overflow */
  /external/stlport/test/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/icu4c/data/xml/main/
si.xml 20 <icu:script type="1">Sinh</icu:script>
  /external/stlport/src/
complex_trig.cpp 70 ::cos(z._M_re) * ::sinh(z._M_im));
89 -::sin(z._M_re) * ::sinh(z._M_im));
114 return complex<_Tp>(::sin(re2) / den, ::sinh(im2) / den);
130 // sinh
133 return complex<_Tp>(::sinh(z._M_re) * ::cos(z._M_im),
137 _STLP_DECLSPEC complex<float> _STLP_CALL sinh(const complex<float>& z) function
140 _STLP_DECLSPEC complex<double> _STLP_CALL sinh(const complex<double>& z) function
144 _STLP_DECLSPEC complex<long double> _STLP_CALL sinh(const complex<long double>& z) function
153 ::sinh(z._M_re) * ::sin(z._M_im));
177 return complex<_Tp>(::sinh(re2) / den, ::sin(im2) / den)
    [all...]
  /external/stlport/stlport/stl/config/
_como.h 95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
  /bionic/libstdc++/include/
cmath 52 using ::sinh;
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cmath 52 using ::sinh;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cmath 52 using ::sinh;
  /dalvik/libcore/luni/src/main/native/
java_lang_Math.c 102 /* native public static double sinh(double a); */
105 return sinh(a);
188 { "sinh", "(D)D", jsinh },
java_lang_StrictMath.c 113 /* native public static double sinh(double a); */
213 { "sinh", "(D)D", jsinh },
  /frameworks/base/tests/CoreTests/android/core/
MathTest.java 634 * @tests java.lang.Math#sinh(double)
639 assertTrue("Should return NaN", Double.isNaN(Math.sinh(Double.NaN)));
641 Double.POSITIVE_INFINITY, Math.sinh(Double.POSITIVE_INFINITY), 0D);
643 Double.NEGATIVE_INFINITY, Math.sinh(Double.NEGATIVE_INFINITY), 0D);
645 .sinh(0.0)));
647 .doubleToLongBits(Math.sinh(+0.0)));
649 .doubleToLongBits(Math.sinh(-0.0)));
652 Double.POSITIVE_INFINITY, Math.sinh(1234.56), 0D);
654 Double.NEGATIVE_INFINITY, Math.sinh(-1234.56), 0D);
656 1.0000000000001666E-6, Math.sinh(0.000001), 0D)
    [all...]
StrictMathTest.java 651 * @tests java.lang.StrictMath#sinh(double)
656 assertTrue(Double.isNaN(StrictMath.sinh(Double.NaN)));
659 .sinh(Double.POSITIVE_INFINITY), 0D);
662 .sinh(Double.NEGATIVE_INFINITY), 0D);
664 .doubleToLongBits(StrictMath.sinh(0.0)));
666 .doubleToLongBits(StrictMath.sinh(+0.0)));
668 .doubleToLongBits(StrictMath.sinh(-0.0)));
671 Double.POSITIVE_INFINITY, StrictMath.sinh(1234.56), 0D);
673 Double.NEGATIVE_INFINITY, StrictMath.sinh(-1234.56), 0D);
675 1.0000000000001666E-6, StrictMath.sinh(0.000001), 0D)
    [all...]
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 52 using ::sinh;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MathTest.java     [all...]
StrictMathTest.java 145 * @tests java.lang.StrictMath#sinh(double)
164 method = "sinh",
177 assertTrue( 4481081628995577220L == Double.doubleToRawLongBits(StrictMath.sinh(3.7252902E-9)));
    [all...]

Completed in 175 milliseconds

1 2 3 4