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

1 2 3 4 5 6 7

  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 52 using ::sinh;
  /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
  /ndk/sources/cxx-stl/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...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 95 # define sinhl sinh
113 # define sinhf sinh
114 # define sinhl sinh
167 # define sinhl sinh
  /prebuilts/ndk/8/sources/cxx-stl/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 54 using ::sinh;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 54 using ::sinh;
  /ndk/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 52 using ::sinh;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 52 using ::sinh;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 54 using ::sinh;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 54 using ::sinh;
  /external/stlport/test/unit/
valarray_test.cpp 48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 48 tmp = sinh(darray);
74 tmp = sinh(farray);
101 tmp = sinh(ldarray);
  /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...]

Completed in 2231 milliseconds

1 2 3 4 5 6 7