Home
last modified time | relevance | path

Searched refs:aligned_length (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-array-object.c132 const uint32_t aligned_length = ECMA_FAST_ARRAY_ALIGN_LENGTH (length); in ecma_op_new_fast_array_object() local
137 …values_p = (ecma_value_t *) jmem_heap_alloc_block_null_on_error (aligned_length * sizeof (ecma_val… in ecma_op_new_fast_array_object()
153 for (uint32_t i = 0; i < aligned_length; i++) in ecma_op_new_fast_array_object()
179 const uint32_t aligned_length = ECMA_FAST_ARRAY_ALIGN_LENGTH (length); in ecma_fast_array_convert_to_normal() local
221 jmem_heap_free_block (values_p, aligned_length * sizeof (ecma_value_t)); in ecma_fast_array_convert_to_normal()
281 const uint32_t aligned_length = ECMA_FAST_ARRAY_ALIGN_LENGTH (old_length); in ecma_fast_array_set_property() local
283 if (JERRY_LIKELY (index < aligned_length)) in ecma_fast_array_set_property()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c825 const uint32_t aligned_length = ECMA_FAST_ARRAY_ALIGN_LENGTH (ext_object_p->u.array.length); in ecma_free_fast_access_array() local
831 for (uint32_t i = 0; i < aligned_length; i++) in ecma_free_fast_access_array()
836 jmem_heap_free_block (values_p, aligned_length * sizeof (ecma_value_t)); in ecma_free_fast_access_array()