/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);
|
/bionic/libm/ |
fake_long_double.c | 36 long double acoshl(long double a1) { return acosh(a1); }
|
/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]);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
tgmath.h | 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/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.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
tgmath.h | 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/ |
tgmath.h | 108 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
mathcalls.h | 89 __MATHCALL (acosh,, (_Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
tgmath.h | 267 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/ |
tgmath.h | 276 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
mathcalls.h | 89 __MATHCALL (acosh,, (_Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 267 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/ |
tgmath.h | 276 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
mathcalls.h | 89 __MATHCALL (acosh,, (_Mdouble_ __x));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 267 #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...] |
/development/ndk/platforms/android-3/include/ |
math.h | 234 double acosh(double);
|
/development/ndk/platforms/android-9/include/ |
math.h | 234 double acosh(double);
|
/packages/apps/Calculator/ |
arity-2.1.2.jar | |