/third_party/skia/resources/sksl/intrinsics/ |
D | Acosh.sksl | 6 return (acosh(inputVal.x) == expected.x && 7 acosh(inputVal.xy) == expected.xy && 8 acosh(inputVal.xyz) == expected.xyz && 9 acosh(inputVal.xyzw) == expected.xyzw && 10 acosh(constVal1.x) == expected.x && 11 acosh(constVal1.xy) == expected.xy && 12 acosh(constVal1.xyz) == expected.xyz && 13 acosh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/third_party/python/Lib/test/ |
D | cmath_testcases.txt | 236 -- acosh: Inverse hyperbolic cosine -- 240 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966 241 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966 242 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966 243 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966 246 acosh0010 acosh 1.0 0.0 -> 0.0 0.0 247 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0 248 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931 249 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931 252 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.5707963267948966 [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | math-acosh.js | 24 assert(isNaN(Math.acosh(NaN))); 25 assert(isNaN(Math.acosh(0))); 26 assert(isNaN(Math.acosh(Number.NEGATIVE_INFINITY))); 27 assert(isSameZero(Math.acosh(1), p_zero)); 28 assert(Math.acosh(Number.POSITIVE_INFINITY) === Number.POSITIVE_INFINITY);
|
/third_party/jerryscript/tests/unit-libm/ |
D | test-libm.inc.h | 170 check_double ("acosh (0.0)", acosh (0.0), -NAN); 171 check_double ("acosh (-0.0)", acosh (-0.0), -NAN); 172 check_double ("acosh (1.0)", acosh (1.0), 0.00000000000000000000E+00); 173 check_double ("acosh (-1.0)", acosh (-1.0), -NAN); 174 check_double ("acosh (INFINITY)", acosh (INFINITY), INF); 175 check_double ("acosh (-INFINITY)", acosh (-INFINITY), -NAN); 176 check_double ("acosh (NAN)", acosh (NAN), NAN); 177 check_double ("acosh (7.08e+02)", acosh (7.08e+02), 7.25559077551410425144E+00); 178 check_double ("acosh (7.10e+02)", acosh (7.10e+02), 7.25841165466159132791E+00); 179 check_double ("acosh (-7.40e+02)", acosh (-7.40e+02), -NAN); [all …]
|
/third_party/jerryscript/tools/unit-tests/ |
D | gen-test-libm.c | 214 GEN_DBL_TEST (acosh (0.0)); in main() 215 GEN_DBL_TEST (acosh (-0.0)); in main() 216 GEN_DBL_TEST (acosh (1.0)); in main() 217 GEN_DBL_TEST (acosh (-1.0)); in main() 218 GEN_DBL_TEST (acosh (INFINITY)); in main() 219 GEN_DBL_TEST (acosh (-INFINITY)); in main() 220 GEN_DBL_TEST (acosh (NAN)); in main() 221 GEN_DBL_TEST (acosh (7.08e+02)); in main() 222 GEN_DBL_TEST (acosh (7.10e+02)); in main() 223 GEN_DBL_TEST (acosh (-7.40e+02)); in main() [all …]
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Acosh.glsl | 8 …return ((((((acosh(inputVal.x) == expected.x && acosh(inputVal.xy) == expected.xy) && acosh(inputV…
|
D | Acosh.metal | 18 …acosh(_uniforms.inputVal.x) == _uniforms.expected.x && all(acosh(_uniforms.inputVal.xy) == _unifor…
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_trigonometric.inl | 154 // acosh 156 using std::acosh; 159 GLM_FUNC_QUALIFIER genType acosh(genType x) function 161 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acosh' only accept floating-point inp… 170 GLM_FUNC_QUALIFIER vecType<T, P> acosh(vecType<T, P> const & v) function 172 return detail::functor1<T, T, P, vecType>::call(acosh, v);
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | acoshl.c | 6 return acosh(x); in acoshl() 27 return acosh(x); in acoshl()
|
D | acosh.c | 9 double acosh(double x) in acosh() function
|
/third_party/musl/src/math/ |
D | acoshl.c | 6 return acosh(x); in acoshl() 27 return acosh(x); in acoshl()
|
D | acosh.c | 9 double acosh(double x) in acosh() function
|
/third_party/rust/crates/num-traits/src/ |
D | real.rs | 764 fn acosh(self) -> Self; in acosh() method 831 Float::acosh(self) -> Self;
|
D | float.rs | 1829 fn acosh(self) -> Self; in acosh() method 1969 Self::acosh(self) -> Self; 2105 libm::acoshf as acosh(self) -> Self; 2153 libm::acosh as acosh(self) -> Self;
|
/third_party/musl/libc-test/src/api/ |
D | tgmath.c | 11 #ifdef acosh in f() 12 {double r = acosh(x);} in f() 14 #error no acosh(x) in f()
|
/third_party/musl/libc-test/report_base/ |
D | REPORT | 11 X ../../third_party/musl/libc-test/src/math/special/acosh.h:9: RN acosh(0x1.001f1c62cf304p+0) want … 12 X ../../third_party/musl/libc-test/src/math/special/acosh.h:10: RN acosh(0x1.00788c223616fp+0) want… 13 X ../../third_party/musl/libc-test/src/math/special/acosh.h:11: RN acosh(0x1.007b7a37c7606p+0) want… 14 X ../../third_party/musl/libc-test/src/math/special/acosh.h:12: RN acosh(0x1.01d173033243cp+0) want… 15 X ../../third_party/musl/libc-test/src/math/special/acosh.h:13: RN acosh(0x1.01d8f20e90409p+0) want… 16 X ../../third_party/musl/libc-test/src/math/special/acosh.h:14: RN acosh(0x1.01ef6122e68bep+0) want… 17 X ../../third_party/musl/libc-test/src/math/special/acosh.h:15: RN acosh(0x1.06822faf07879p+0) want… 18 X ../../third_party/musl/libc-test/src/math/special/acosh.h:17: RN acosh(0x1.069d65411ec51p+0) want… 19 X ../../third_party/musl/libc-test/src/math/special/acosh.h:18: RN acosh(0x1.071d6b2713d08p+0) want… 20 X ../../third_party/musl/libc-test/src/math/special/acosh.h:19: RN acosh(0x1.0728405f5140cp+0) want… [all …]
|
/third_party/python/Modules/ |
D | _math.h | 2 # define m_acosh acosh
|
/third_party/typescript/tests/baselines/reference/ |
D | doYouNeedToChangeYourTargetLibraryES2015.js | 50 const testMathAcosh = Math.acosh(0); 148 var testMathAcosh = Math.acosh(0);
|
D | doYouNeedToChangeYourTargetLibraryES2015.types | 377 const testMathAcosh = Math.acosh(0); 379 >Math.acosh(0) : any 380 >Math.acosh : any 382 >acosh : any
|
/third_party/jerryscript/jerry-libm/ |
D | acosh.c | 48 acosh (double x) in acosh() function
|
/third_party/jerryscript/jerry-libm/include/ |
D | math.h | 65 double acosh (double);
|
/third_party/musl/ndk_musl_include/ |
D | tgmath.h | 147 #undef acosh 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | tgmath.h | 147 #undef acosh 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | tgmath.h | 147 #undef acosh 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/musl/include/ |
D | tgmath.h | 147 #undef acosh 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|