/third_party/jerryscript/tests/jerry/es2015/ |
H A 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/tools/unit-tests/ |
H A D | gen-test-libm.c | 213 /* acosh tests */ in main() 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.1 in main() [all...] |
/third_party/musl/src/math/ |
H A D | acoshl.c | 6 return acosh(x); in acoshl() 9 /* acosh(x) = log(x + sqrt(x*x-1)) */ 31 return acosh(x); in acoshl()
|
H A D | acosh.c | 8 /* acosh(x) = log(x + sqrt(x*x-1)) */ 9 double acosh(double x) in acosh() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | acoshl.c | 6 return acosh(x); in acoshl() 9 /* acosh(x) = log(x + sqrt(x*x-1)) */ 27 return acosh(x); in acoshl()
|
H A D | acosh.c | 8 /* acosh(x) = log(x + sqrt(x*x-1)) */ 9 double acosh(double x) in acosh() function
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_acosh_test.cpp | 18 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the acosh interface. 25 bool testResult = DoubleUlpCmp(g_acoshData[i].expected, acosh(g_acoshData[i].input), 2); in HWTEST_F() 32 * @tc.desc: When the parameter of acosh is valid, test the return value of the function. 37 EXPECT_DOUBLE_EQ(0.0, acosh(1.0)); in HWTEST_F() 56 * @tc.desc: When the parameter of acosh is valid, test the return value of the function. 66 * @tc.desc: When the parameter of acosh is valid, test the return value of the function.
|
/third_party/musl/libc-test/src/api/ |
H A D | tgmath.c | 11 #ifdef acosh in f() 12 {double r = acosh(x);} in f() 14 #error no acosh(x) in f()
|
/third_party/jerryscript/jerry-libm/ |
H A D | acosh.c | 30 /* acosh(x) 33 * acosh(x) = log [ x + sqrt(x * x - 1) ] 35 * acosh(x) := log(x) + ln2, if x is large; else 36 * acosh(x) := log(2x - 1 / (sqrt(x * x - 1) + x)), if x > 2; else 37 * acosh(x) := log1p(t + sqrt(2.0 * t + t * t)); where t = x - 1. 40 * acosh(x) is NaN with signal if x < 1. 41 * acosh(NaN) is NaN without signal. 48 acosh (double x) in acosh() function 68 /* acosh(huge) = log(2x) */ in acosh() 74 /* acosh( in acosh() [all...] |
H A D | jerry-libm-internal.h | 95 double acosh (double x);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | doYouNeedToChangeYourTargetLibraryES2015.js | 50 const testMathAcosh = Math.acosh(0); 148 var testMathAcosh = Math.acosh(0);
|
/third_party/jerryscript/jerry-libm/include/ |
H A D | math.h | 65 double acosh (double);
|
/third_party/node/deps/v8/src/base/ |
H A D | ieee754.h | 19 V8_BASE_EXPORT double acosh(double x);
|
/third_party/musl/libc-test/src/math/ |
H A D | acosh.c | 6 #include "sanity/acosh.h" 7 #include "special/acosh.h" 26 y = acosh(p->x); in main() 30 printf("%s:%d: bad fp exception: %s acosh(%a)=%a, want %s", in main() 41 printf("%s:%d: %s acosh(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | tgmath.h | 147 #undef acosh macro 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | tgmath.h | 147 #undef acosh macro 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/musl/include/ |
H A D | tgmath.h | 147 #undef acosh macro 210 #define acosh(x) __tg_real_complex(acosh, (x)) macro
|
/third_party/ffmpeg/libavfilter/tests/ |
H A D | dnn-layer-mathunary.c | 56 return acosh(f); in get_expected()
|
/third_party/ffmpeg/tests/dnn/ |
H A D | dnn-layer-mathunary-test.c | 56 return acosh(f); in get_expected()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | func_trigonometric.hpp | 158 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/acosh.xml">GLSL acosh man page</a> 161 GLM_FUNC_DECL vecType<T, P> acosh(vecType<T, P> const & x);
|
/third_party/skia/src/sksl/ |
H A D | SkSLIntrinsicList.h | 15 SKSL_INTRINSIC(acosh) \
|
/third_party/ffmpeg/libavfilter/dnn/ |
H A D | dnn_backend_native_layer_mathunary.c | 130 dst[i] = acosh(src[i]); in ff_dnn_execute_layer_math_unary()
|
/third_party/decimal.js/test/modules/ |
H A D | immutability.js | 206 y = a.acosh(); 208 z = Decimal.acosh(a);
|
/third_party/python/Lib/test/ |
H A D | test_math.py | 270 self.assertRaises(TypeError, math.acosh) 271 self.ftest('acosh(1)', math.acosh(1), 0) 272 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) 273 self.assertRaises(ValueError, math.acosh, 0) 274 self.assertRaises(ValueError, math.acosh, -1) 275 self.assertEqual(math.acosh(INF), INF) 276 self.assertRaises(ValueError, math.acosh, NINF) 277 self.assertTrue(math.isnan(math.acosh(NA [all...] |
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-math.c | 514 x = DOUBLE_TO_ECMA_NUMBER_T (acosh (x)); in ecma_builtin_math_dispatch_routine()
|