Home
last modified time | relevance | path

Searched refs:ECMA_DIRECT_STRING_MAX_IMM (Results 1 – 6 of 6) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-globals.h1421 #define ECMA_DIRECT_STRING_MAX_IMM 0x07ffffff macro
1423 #define ECMA_DIRECT_STRING_MAX_IMM 0x0000ffff macro
Decma-helpers-string.c45 JERRY_STATIC_ASSERT (LIT_MAGIC_STRING__COUNT <= ECMA_DIRECT_STRING_MAX_IMM,
194 if (JERRY_LIKELY (string_id <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_new_ecma_string_from_magic_string_ex_id()
530 JERRY_ASSERT (uint32_number > ECMA_DIRECT_STRING_MAX_IMM); in ecma_new_non_direct_string_from_uint32()
548 if (JERRY_LIKELY (uint32_number <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_new_ecma_string_from_uint32()
567 JERRY_ASSERT (uint32_number <= ECMA_DIRECT_STRING_MAX_IMM); in ecma_get_ecma_string_from_uint32()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-objects.c688 if (JERRY_LIKELY (index <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_op_object_find_by_uint32_index()
874 if (JERRY_LIKELY (index <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_op_object_get_by_uint32_index()
1074 if (JERRY_LIKELY (index <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_op_object_put_by_uint32_index()
1637 if (JERRY_LIKELY (index <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_op_object_delete_by_uint32_index()
Decma-array-object.c207 JERRY_ASSERT (index <= ECMA_DIRECT_STRING_MAX_IMM); in ecma_fast_array_convert_to_normal()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-helpers.c790 if (JERRY_LIKELY (index <= ECMA_DIRECT_STRING_MAX_IMM)) in ecma_builtin_helper_def_prop_by_index()
/third_party/jerryscript/jerry-core/vm/
Dvm.c73 if (int_value >= 0 && int_value <= ECMA_DIRECT_STRING_MAX_IMM) in vm_op_get_value()