/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestAcosh.rs | 24 return acosh(inV); 28 return acosh(inV); 32 return acosh(inV); 36 return acosh(inV); 40 return acosh(inV); 44 return acosh(inV); 48 return acosh(inV); 52 return acosh(inV);
|
/prebuilts/go/darwin-x86/src/math/ |
acosh.go | 25 // acosh(x) = log [ x + sqrt(x*x-1) ] 27 // acosh(x) := log(x)+ln2, if x is large; else 28 // acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else 29 // acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1. 32 // acosh(x) is NaN with signal if x<1. 33 // acosh(NaN) is NaN without signal. 36 // Acosh returns the inverse hyperbolic cosine of x. 39 // Acosh(+Inf) = +Inf 40 // Acosh(x) = NaN if x < 1 41 // Acosh(NaN) = Na [all...] |
/prebuilts/go/linux-x86/src/math/ |
acosh.go | 25 // acosh(x) = log [ x + sqrt(x*x-1) ] 27 // acosh(x) := log(x)+ln2, if x is large; else 28 // acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else 29 // acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1. 32 // acosh(x) is NaN with signal if x<1. 33 // acosh(NaN) is NaN without signal. 36 // Acosh returns the inverse hyperbolic cosine of x. 39 // Acosh(+Inf) = +Inf 40 // Acosh(x) = NaN if x < 1 41 // Acosh(NaN) = Na [all...] |
/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) */
|
e_acosh.c | 18 * acosh(x) = log [ x + ieee_sqrt(x*x-1) ] 20 * acosh(x) := ieee_log(x)+ln2, if x is large; else 21 * acosh(x) := ieee_log(2x-1/(ieee_sqrt(x*x-1)+x)) if x>2; else 22 * acosh(x) := ieee_log1p(t+ieee_sqrt(2.0*t+t*t)); where t=x-1. 25 * acosh(x) is NaN with signal if x<1. 26 * acosh(NaN) is NaN without signal. 55 return __ieee754_log(x)+ln2; /* acosh(huge)=ieee_log(2x) */ 57 return 0.0; /* acosh(1) = 0 */
|
/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);
|
e_acoshf.c | 38 return __ieee754_logf(x)+ln2; /* acosh(huge)=log(2x) */ 40 return 0.0; /* acosh(1) = 0 */
|
e_acoshl.c | 35 /* EXP_LARGE is the threshold above which we use acosh(x) ~= log(2x). */ 79 RETURNI(logl(x)+ln2); /* acosh(huge)=log(2x), or misnormal */ 81 RETURNI(0.0); /* acosh(1) = 0 */
|
/development/ndk/platforms/android-13/arch-arm/symbols/ |
libm.so.functions.txt | 6 acosh
|
/development/ndk/platforms/android-13/arch-mips/symbols/ |
libm.so.functions.txt | 6 acosh
|
/development/ndk/platforms/android-3/arch-arm/symbols/ |
libm.so.functions.txt | 6 acosh
|
/development/ndk/platforms/android-9/arch-arm/symbols/ |
libm.so.functions.txt | 6 acosh
|
/development/ndk/platforms/android-9/arch-mips/symbols/ |
libm.so.functions.txt | 6 acosh
|
/external/mesa3d/src/glsl/builtins/ir/ |
acosh.ir | 1 ((function acosh
|
/external/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...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
cmath_testcases.txt | 230 -- acosh: Inverse hyperbolic cosine -- 234 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966 235 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966 236 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966 237 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966 240 acosh0010 acosh 1.0 0.0 -> 0.0 0.0 241 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0 242 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931 243 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931 246 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.570796326794896 [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
cmath_testcases.txt | 230 -- acosh: Inverse hyperbolic cosine -- 234 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966 235 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966 236 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966 237 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966 240 acosh0010 acosh 1.0 0.0 -> 0.0 0.0 241 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0 242 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931 243 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931 246 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.570796326794896 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
cmath_testcases.txt | 230 -- acosh: Inverse hyperbolic cosine -- 234 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966 235 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966 236 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966 237 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966 240 acosh0010 acosh 1.0 0.0 -> 0.0 0.0 241 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0 242 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931 243 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931 246 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.570796326794896 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
cmath_testcases.txt | 230 -- acosh: Inverse hyperbolic cosine -- 234 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966 235 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966 236 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966 237 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966 240 acosh0010 acosh 1.0 0.0 -> 0.0 0.0 241 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0 242 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931 243 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931 246 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.570796326794896 [all...] |
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/lib/ |
libm.so | |
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/lib/ |
libm.so | |
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/libr2/ |
libm.so | |
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/libr6/ |
libm.so | |
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/lib/ |
libm.so | |
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/lib/ |
libm.so | |