/third_party/jerryscript/tests/jerry/es2015/ |
D | math-cbrt.js | 23 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/ |
D | gen-test-libm.c | 808 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/ |
D | test-libm.inc.h | 615 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/ |
D | cbrt_tablegen.h | 53 cbrt_val = i * cbrt(i); in AAC_RENAME() 62 cbrt_val = i * cbrt(i); in AAC_RENAME()
|
D | mpegaudiodec_common_tablegen.h | 59 pow43_val = value / IMDCT_SCALAR * cbrt(value); in mpegaudiodec_common_tableinit()
|
D | mpegaudio_tablegen.h | 62 pow43_lut[i] = i * cbrt(i); in mpegaudio_tableinit()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
D | math_cbrt_test.cpp | 24 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/ |
D | tgmath.c | 46 #ifdef cbrt in f() 47 {double r = cbrt(x);} in f() 49 #error no cbrt(x) in f()
|
/third_party/ffmpeg/libavutil/ |
D | tablegen.h | 35 #define cbrt ff_cbrt macro
|
/third_party/jerryscript/jerry-libm/include/ |
D | math.h | 80 double cbrt (double);
|
/third_party/typescript/tests/baselines/reference/ |
D | doYouNeedToChangeYourTargetLibraryES2015.js | 56 const testMathCbrt = Math.cbrt(0); 154 var testMathCbrt = Math.cbrt(0);
|
D | doYouNeedToChangeYourTargetLibraryES2015.types | 426 const testMathCbrt = Math.cbrt(0); 428 >Math.cbrt(0) : any 429 >Math.cbrt : any 431 >cbrt : any
|
/third_party/node/deps/v8/src/base/ |
D | ieee754.h | 58 V8_BASE_EXPORT double cbrt(double x);
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | cbrt.c | 33 double cbrt(double x) in cbrt() function
|
D | cbrtl.c | 23 return cbrt(x); in cbrtl()
|
/third_party/musl/libc-test/src/math/ |
D | cbrt.c | 26 y = cbrt(p->x); in main()
|
D | test_src_math.gni | 23 "cbrt",
|
/third_party/musl/src/math/ |
D | cbrt.c | 33 double cbrt(double x) in cbrt() function
|
D | cbrtl.c | 23 return cbrt(x); in cbrtl()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | tgmath.h | 154 #undef cbrt 217 #define cbrt(x) __tg_real(cbrt, (x)) macro
|
/third_party/musl/include/ |
D | tgmath.h | 154 #undef cbrt 217 #define cbrt(x) __tg_real(cbrt, (x)) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | tgmath.h | 154 #undef cbrt 217 #define cbrt(x) __tg_real(cbrt, (x)) macro
|
/third_party/musl/ndk_musl_include/ |
D | tgmath.h | 154 #undef cbrt 217 #define cbrt(x) __tg_real(cbrt, (x)) macro
|
/third_party/jerryscript/jerry-libm/ |
D | jerry-libm-internal.h | 108 double cbrt (double);
|
D | cbrt.c | 43 cbrt (double x) in cbrt() function
|