Home
last modified time | relevance | path

Searched refs:DOUBLE_TO_ECMA_NUMBER_T (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-math.c399 x = DOUBLE_TO_ECMA_NUMBER_T (fabs (x)); in ecma_builtin_math_dispatch_routine()
404 x = DOUBLE_TO_ECMA_NUMBER_T (acos (x)); in ecma_builtin_math_dispatch_routine()
409 x = DOUBLE_TO_ECMA_NUMBER_T (asin (x)); in ecma_builtin_math_dispatch_routine()
414 x = DOUBLE_TO_ECMA_NUMBER_T (atan (x)); in ecma_builtin_math_dispatch_routine()
419 x = DOUBLE_TO_ECMA_NUMBER_T (ceil (x)); in ecma_builtin_math_dispatch_routine()
424 x = DOUBLE_TO_ECMA_NUMBER_T (cos (x)); in ecma_builtin_math_dispatch_routine()
429 x = DOUBLE_TO_ECMA_NUMBER_T (exp (x)); in ecma_builtin_math_dispatch_routine()
434 x = DOUBLE_TO_ECMA_NUMBER_T (floor (x)); in ecma_builtin_math_dispatch_routine()
439 x = DOUBLE_TO_ECMA_NUMBER_T (log (x)); in ecma_builtin_math_dispatch_routine()
488 x = DOUBLE_TO_ECMA_NUMBER_T (sin (x)); in ecma_builtin_math_dispatch_routine()
[all …]
Decma-builtin-date.c693 return ecma_make_number_value (floor (DOUBLE_TO_ECMA_NUMBER_T (jerry_port_get_current_time ()))); in ecma_builtin_date_now()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1147 #define DOUBLE_TO_ECMA_NUMBER_T(value) (ecma_number_t) (value) macro
1192 #define DOUBLE_TO_ECMA_NUMBER_T(value) value macro
Decma-helpers-number.c683 return DOUBLE_TO_ECMA_NUMBER_T (pow (x, y)); in ecma_number_pow()