Home
last modified time | relevance | path

Searched refs:cbrt (Results 1 – 25 of 86) sorted by relevance

1234

/third_party/jerryscript/tests/jerry/es2015/
Dmath-cbrt.js23 assert(isNaN(Math.cbrt(NaN)));
24 assert(isSameZero(Math.cbrt(p_zero), p_zero));
25 assert(isSameZero(Math.cbrt(n_zero), n_zero));
26 assert(Math.cbrt(Number.POSITIVE_INFINITY) === Number.POSITIVE_INFINITY);
27 assert(Math.cbrt(Number.NEGATIVE_INFINITY) === Number.NEGATIVE_INFINITY);
29 assert(Math.cbrt(1.0) === 1.0);
30 assert(Math.cbrt(-1.0) === -1.0);
32 assert(Math.cbrt(27.0) === 3.0);
33 assert(Math.cbrt(0.001) === 0.1);
/third_party/jerryscript/tools/unit-tests/
Dgen-test-libm.c808 GEN_DBL_TEST (cbrt (0.0)); in main()
809 GEN_DBL_TEST (cbrt (-0.0)); in main()
810 GEN_DBL_TEST (cbrt (1.0)); in main()
811 GEN_DBL_TEST (cbrt (-1.0)); in main()
812 GEN_DBL_TEST (cbrt (INFINITY)); in main()
813 GEN_DBL_TEST (cbrt (-INFINITY)); in main()
814 GEN_DBL_TEST (cbrt (NAN)); in main()
815 GEN_DBL_TEST (cbrt (0.7)); in main()
816 GEN_DBL_TEST (cbrt (2)); in main()
817 GEN_DBL_TEST (cbrt (10)); in main()
[all …]
/third_party/jerryscript/tests/unit-libm/
Dtest-libm.inc.h615 check_double ("cbrt (0.0)", cbrt (0.0), 0.00000000000000000000E+00);
616 check_double ("cbrt (-0.0)", cbrt (-0.0), -0.00000000000000000000E+00);
617 check_double ("cbrt (1.0)", cbrt (1.0), 1.00000000000000000000E+00);
618 check_double ("cbrt (-1.0)", cbrt (-1.0), -1.00000000000000000000E+00);
619 check_double ("cbrt (INFINITY)", cbrt (INFINITY), INF);
620 check_double ("cbrt (-INFINITY)", cbrt (-INFINITY), -INF);
621 check_double ("cbrt (NAN)", cbrt (NAN), NAN);
622 check_double ("cbrt (0.7)", cbrt (0.7), 8.87904001742600645919E-01);
623 check_double ("cbrt (2)", cbrt (2), 1.25992104989487319067E+00);
624 check_double ("cbrt (10)", cbrt (10), 2.15443469003188381450E+00);
[all …]
/third_party/ffmpeg/libavcodec/
Dcbrt_tablegen.h53 cbrt_val = i * cbrt(i); in AAC_RENAME()
62 cbrt_val = i * cbrt(i); in AAC_RENAME()
Dmpegaudiodec_common_tablegen.h59 pow43_val = value / IMDCT_SCALAR * cbrt(value); in mpegaudiodec_common_tableinit()
Dmpegaudio_tablegen.h62 pow43_lut[i] = i * cbrt(i); in mpegaudio_tableinit()
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_cbrt_test.cpp24 bool testResult = DoubleUlpCmp(g_cbrtData[i].expected, cbrt(g_cbrtData[i].input), 1);
36 EXPECT_DOUBLE_EQ(2.0, cbrt(8.0));
/third_party/musl/libc-test/src/api/
Dtgmath.c46 #ifdef cbrt in f()
47 {double r = cbrt(x);} in f()
49 #error no cbrt(x) in f()
/third_party/ffmpeg/libavutil/
Dtablegen.h35 #define cbrt ff_cbrt macro
/third_party/jerryscript/jerry-libm/include/
Dmath.h80 double cbrt (double);
/third_party/typescript/tests/baselines/reference/
DdoYouNeedToChangeYourTargetLibraryES2015.js56 const testMathCbrt = Math.cbrt(0);
154 var testMathCbrt = Math.cbrt(0);
DdoYouNeedToChangeYourTargetLibraryES2015.types426 const testMathCbrt = Math.cbrt(0);
428 >Math.cbrt(0) : any
429 >Math.cbrt : any
431 >cbrt : any
/third_party/node/deps/v8/src/base/
Dieee754.h58 V8_BASE_EXPORT double cbrt(double x);
/third_party/musl/porting/liteos_a/kernel/src/math/
Dcbrt.c33 double cbrt(double x) in cbrt() function
Dcbrtl.c23 return cbrt(x); in cbrtl()
/third_party/musl/libc-test/src/math/
Dcbrt.c26 y = cbrt(p->x); in main()
Dtest_src_math.gni23 "cbrt",
/third_party/musl/src/math/
Dcbrt.c33 double cbrt(double x) in cbrt() function
Dcbrtl.c23 return cbrt(x); in cbrtl()
/third_party/musl/porting/liteos_m/kernel/include/
Dtgmath.h154 #undef cbrt
217 #define cbrt(x) __tg_real(cbrt, (x)) macro
/third_party/musl/include/
Dtgmath.h154 #undef cbrt
217 #define cbrt(x) __tg_real(cbrt, (x)) macro
/third_party/musl/porting/uniproton/kernel/include/
Dtgmath.h154 #undef cbrt
217 #define cbrt(x) __tg_real(cbrt, (x)) macro
/third_party/musl/ndk_musl_include/
Dtgmath.h154 #undef cbrt
217 #define cbrt(x) __tg_real(cbrt, (x)) macro
/third_party/jerryscript/jerry-libm/
Djerry-libm-internal.h108 double cbrt (double);
Dcbrt.c43 cbrt (double x) in cbrt() function

1234