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

1 2

  /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
  /bionic/libstdc++/include/
cmath 51 using ::cosh;
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cmath 51 using ::cosh;
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cmath 51 using ::cosh;
  /external/stlport/test/unit/
valarray_test.cpp 46 tmp = cosh(darray);
72 tmp = cosh(farray);
99 tmp = cosh(ldarray);
cmath_test.cpp 105 CPPUNIT_CHECK( are_equals(std::cosh(0.0), 1.0) );
130 CPPUNIT_CHECK( are_equals(std::cosh(0.0f), 1.0f) );
157 CPPUNIT_CHECK( are_equals(std::cosh(0.0l), 1.0l) );
  /frameworks/base/tests/CoreTests/android/core/
MathTest.java 206 * @tests java.lang.Math#cosh(double)
211 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
213 Double.POSITIVE_INFINITY, Math.cosh(Double.POSITIVE_INFINITY), 0D);
215 Double.POSITIVE_INFINITY, Math.cosh(Double.NEGATIVE_INFINITY), 0D);
216 assertEquals("Should return 1.0", 1.0, Math.cosh(+0.0), 0D);
217 assertEquals("Should return 1.0", 1.0, Math.cosh(-0.0), 0D);
220 Double.POSITIVE_INFINITY, Math.cosh(1234.56), 0D);
222 Double.POSITIVE_INFINITY, Math.cosh(-1234.56), 0D);
224 .cosh(0.000001), 0D);
226 .cosh(-0.000001), 0D)
    [all...]
StrictMathTest.java 194 * @tests java.lang.StrictMath#cosh(double)
201 .cosh(Double.NaN)));
204 .cosh(Double.POSITIVE_INFINITY));
207 .cosh(Double.NEGATIVE_INFINITY));
208 assertEquals("Should return 1.0", 1.0, StrictMath.cosh(+0.0));
209 assertEquals("Should return 1.0", 1.0, StrictMath.cosh(-0.0));
212 Double.POSITIVE_INFINITY, StrictMath.cosh(1234.56));
214 Double.POSITIVE_INFINITY, StrictMath.cosh(-1234.56));
216 StrictMath.cosh(0.000001));
218 StrictMath.cosh(-0.000001))
    [all...]
  /external/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)
367 _STLP_DMATH_INLINE(cosh)
438 _STLP_DEF_MATH_INLINE(cosh, cosh)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
560 using ::cosh;
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
MathTest.java 341 * @tests java.lang.Math#cosh(double)
346 method = "cosh",
351 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
353 Double.POSITIVE_INFINITY, Math.cosh(Double.POSITIVE_INFINITY), 0D);
355 Double.POSITIVE_INFINITY, Math.cosh(Double.NEGATIVE_INFINITY), 0D);
356 assertEquals("Should return 1.0", 1.0, Math.cosh(+0.0), 0D);
357 assertEquals("Should return 1.0", 1.0, Math.cosh(-0.0), 0D);
360 Double.POSITIVE_INFINITY, Math.cosh(1234.56), 0D);
362 Double.POSITIVE_INFINITY, Math.cosh(-1234.56), 0D);
364 .cosh(0.000001), 0D)
    [all...]
StrictMathTest.java 476 * @tests java.lang.StrictMath#cosh(double)
481 method = "cosh",
488 .cosh(Double.NaN)));
491 .cosh(Double.POSITIVE_INFINITY));
494 .cosh(Double.NEGATIVE_INFINITY));
495 assertEquals("Should return 1.0", 1.0, StrictMath.cosh(+0.0));
496 assertEquals("Should return 1.0", 1.0, StrictMath.cosh(-0.0));
499 Double.POSITIVE_INFINITY, StrictMath.cosh(1234.56));
501 Double.POSITIVE_INFINITY, StrictMath.cosh(-1234.56));
503 StrictMath.cosh(0.000001))
    [all...]
  /external/skia/src/core/
SkCordic.cpp 200 int32_t cosh = kFixedInvGain2; local
202 SkHyperbolic(&cosh, &sinh, &a, 0);
203 return cosh + sinh;
  /bionic/libm/src/
math_private.h 213 #define __ieee754_cosh cosh
  /dalvik/libcore/luni/src/main/java/java/lang/
Math.java 276 * <li>{@code cosh(+infinity) = +infinity}</li>
277 * <li>{@code cosh(-infinity) = +infinity}</li>
278 * <li>{@code cosh(NaN) = NaN}</li>
285 public static native double cosh(double d); method in class:Math
    [all...]
StrictMath.java 271 * <li>{@code cosh(+infinity) = +infinity}</li>
272 * <li>{@code cosh(-infinity) = +infinity}</li>
273 * <li>{@code cosh(NaN) = NaN}</li>
280 public static native double cosh(double d); method in class:StrictMath
    [all...]
  /dalvik/libcore/luni/src/main/native/
java_lang_Math.c 114 /* native public static double cosh(double a); */
117 return cosh(a);
189 { "cosh", "(D)D", jcosh },
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 117 #define cosh(z) __TGMATH_CPLX(z, cosh, ccosh) macro
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 114 #define cosh(z) __TGMATH_CPLX(z, cosh, ccosh) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 117 #define cosh(z) __TGMATH_CPLX(z, cosh, ccosh) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 114 #define cosh(z) __TGMATH_CPLX(z, cosh, ccosh) macro
  /bionic/libm/include/
math.h 211 double cosh(double);
  /ndk/build/platforms/android-3/arch-arm/usr/include/
math.h 211 double cosh(double);
  /ndk/build/platforms/android-4/arch-arm/usr/include/
math.h 211 double cosh(double);

Completed in 1928 milliseconds

1 2