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

1 2 3 4 5 6 7

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestAcosh.rs 24 return acosh(in);
28 return acosh(in);
32 return acosh(in);
36 return acosh(in);
  /external/fdlibm/
w_acosh.c 16 * wrapper acosh(x)
22 double acosh(double x) /* wrapper acosh */ function
24 double acosh(x) /* wrapper acosh */
35 return __kernel_standard(x,x,29); /* acosh(x<1) */
fdlibm.h 143 extern double acosh __P((double));
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosh.c 21 * acosh(x) = log [ x + sqrt(x*x-1) ]
23 * acosh(x) := log(x)+ln2, if x is large; else
24 * acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
25 * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
28 * acosh(x) is NaN with signal if x<1.
29 * acosh(NaN) is NaN without signal.
54 return __ieee754_log(x)+ln2; /* acosh(huge)=log(2x) */
56 return 0.0; /* acosh(1) = 0 */
67 __weak_reference(acosh, acoshl);
  /external/chromium_org/v8/test/mjsunit/es6/
math-hyperbolic.js 31 [Math.sinh, Math.cosh, Math.tanh, Math.asinh, Math.acosh, Math.atanh].
52 test_id(Math.cosh, Math.acosh, x);
95 assertEquals(0, Math.acosh(1));
96 assertEquals("Infinity", String(Math.acosh(Infinity)));
98 // Math.acosh(x) is NaN for x < 1
100 assertTrue(isNaN(Math.acosh(x)));
123 assertEqualsDelta(0.9624236501192, Math.acosh(1.5), 1E-12);
124 assertEqualsDelta(2.2924316695612, Math.acosh(5), 1E-12);
125 assertEqualsDelta(0.4435682543851, Math.acosh(1.1), 1E-12);
126 assertEqualsDelta(1.3169578969248, Math.acosh(2), 1E-12)
    [all...]
  /external/libcxx/test/numerics/complex.number/complex.transcendentals/
Android.mk 79 test_name := numerics/complex.number/complex.transcendentals/acosh
80 test_src := acosh.pass.cpp
acosh.pass.cpp 14 // acosh(const complex<T>& x);
25 assert(acosh(c) == x);
42 std::complex<double> r = acosh(x[i]);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 36 IMPORT_F32_FN_F32(acosh)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
acosh.pass.cpp 14 // acosh(const complex<T>& x);
25 assert(acosh(c) == x);
42 std::complex<double> r = acosh(x[i]);
  /ndk/sources/android/support/src/
math_support.c 68 __attribute__((weak)) long double acoshl(long double x) { return acosh((double)x); }
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 119 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 119 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /external/clang/test/CodeGen/
libcall-declarations.c 43 double acosh(double);
270 F(acos), F(acosf), F(acosl), F(acosh), F(acoshf),
342 // CHECK-NOERRNO: declare double @acosh(double) [[NUW]]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
mathcalls.h 89 __MATHCALL (acosh,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
tgmath.h 274 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
mathcalls.h 89 __MATHCALL (acosh,, (_Mdouble_ __x));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 274 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 156 self.assertRaises(TypeError, math.acosh)
157 self.ftest('acosh(1)', math.acosh(1), 0)
158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168)
159 self.assertRaises(ValueError, math.acosh, 0)
160 self.assertRaises(ValueError, math.acosh, -1)
161 self.assertEqual(math.acosh(INF), INF)
162 self.assertRaises(ValueError, math.acosh, NINF)
163 self.assertTrue(math.isnan(math.acosh(NAN))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 156 self.assertRaises(TypeError, math.acosh)
157 self.ftest('acosh(1)', math.acosh(1), 0)
158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168)
159 self.assertRaises(ValueError, math.acosh, 0)
160 self.assertRaises(ValueError, math.acosh, -1)
161 self.assertEqual(math.acosh(INF), INF)
162 self.assertRaises(ValueError, math.acosh, NINF)
163 self.assertTrue(math.isnan(math.acosh(NAN))
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/tr1/
math.h 37 using std::tr1::acosh;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
math.h 37 using std::tr1::acosh;

Completed in 937 milliseconds

1 2 3 4 5 6 7