Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/vm/
Dopcodes-ecma-arithmetics.c44 do_number_arithmetic (number_arithmetic_op op, /**< number arithmetic operation */ in do_number_arithmetic() function
Dopcodes.h72 do_number_arithmetic (number_arithmetic_op op, ecma_value_t left_value, ecma_value_t right_value);
Dvm.c2947 result = do_number_arithmetic (NUMBER_ARITHMETIC_SUBTRACTION, in vm_loop()
3010 result = do_number_arithmetic (NUMBER_ARITHMETIC_MULTIPLICATION, in vm_loop()
3027 result = do_number_arithmetic (NUMBER_ARITHMETIC_DIVISION, in vm_loop()
3061 result = do_number_arithmetic (NUMBER_ARITHMETIC_REMAINDER, in vm_loop()
3076 result = do_number_arithmetic (NUMBER_ARITHMETIC_EXPONENTIATION, in vm_loop()
/third_party/jerryscript/jerry-core/api/
Djerry.c1121 … return jerry_return (do_number_arithmetic (op - ECMA_NUMBER_ARITHMETIC_OP_API_OFFSET, lhs, rhs)); in jerry_binary_operation()