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

1 2 3 4 5 6 7

  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 51 using ::cosh;
  /external/stlport/src/
complex_trig.cpp 69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im),
88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im),
113 _Tp den = ::cos(re2) + ::cosh(im2);
134 ::cosh(z._M_re) * ::sin(z._M_im));
149 // cosh
152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im),
156 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>& z) function
159 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>& z) function
163 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>& z) function
176 _Tp den = ::cosh(re2) + ::cos(im2)
    [all...]
  /external/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /ndk/sources/cxx-stl/stlport/src/
complex_trig.cpp 69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im),
88 return complex<_Tp>(::cos(z._M_re) * ::cosh(z._M_im),
113 _Tp den = ::cos(re2) + ::cosh(im2);
134 ::cosh(z._M_re) * ::sin(z._M_im));
149 // cosh
152 return complex<_Tp>(::cosh(z._M_re) * ::cos(z._M_im),
156 _STLP_DECLSPEC complex<float> _STLP_CALL cosh(const complex<float>& z) function
159 _STLP_DECLSPEC complex<double> _STLP_CALL cosh(const complex<double>& z) function
163 _STLP_DECLSPEC complex<long double> _STLP_CALL cosh(const complex<long double>& z) function
176 _Tp den = ::cosh(re2) + ::cos(im2)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 96 # define coshl cosh
117 # define coshf cosh
118 # define coshl cosh
168 # define coshl cosh
  /bionic/libstdc++/include/
cmath 53 using ::cosh;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 53 using ::cosh;
  /ndk/sources/cxx-stl/system/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 51 using ::cosh;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 51 using ::cosh;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 53 using ::cosh;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 53 using ::cosh;
  /external/stlport/test/unit/
valarray_test.cpp 46 tmp = cosh(darray);
72 tmp = cosh(farray);
99 tmp = cosh(ldarray);
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 46 tmp = cosh(darray);
72 tmp = cosh(farray);
99 tmp = cosh(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 46 tmp = cosh(darray);
72 tmp = cosh(farray);
99 tmp = cosh(ldarray);
  /libcore/luni/src/main/native/
java_lang_Math.cpp 83 return cosh(a);
118 NATIVE_METHOD(Math, cosh, "!(D)D"),
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 161 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
163 Double.POSITIVE_INFINITY, Math.cosh(Double.POSITIVE_INFINITY), 0D);
165 Double.POSITIVE_INFINITY, Math.cosh(Double.NEGATIVE_INFINITY), 0D);
166 assertEquals("Should return 1.0", 1.0, Math.cosh(+0.0), 0D);
167 assertEquals("Should return 1.0", 1.0, Math.cosh(-0.0), 0D);
170 Double.POSITIVE_INFINITY, Math.cosh(1234.56), 0D);
172 Double.POSITIVE_INFINITY, Math.cosh(-1234.56), 0D);
174 .cosh(0.000001), 0D);
176 .cosh(-0.000001), 0D);
178 .cosh(2.33482), 0D)
    [all...]

Completed in 1100 milliseconds

1 2 3 4 5 6 7