Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-array-object.h80 ecma_fast_array_extend (ecma_object_t *object_p, uint32_t new_lengt);
Decma-array-object.c295 values_p = ecma_fast_array_extend (object_p, new_length); in ecma_fast_array_set_property()
323 ecma_fast_array_extend (ecma_object_t *object_p, /**< fast access mode array object */ in ecma_fast_array_extend() function
499 ecma_fast_array_extend (object_p, new_length); in ecma_fast_array_set_length()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array-prototype.c499 ecma_value_t *buffer_p = ecma_fast_array_extend (obj_p, new_length) + length; in ecma_builtin_array_prototype_object_push()
921 to_buffer_p = ecma_fast_array_extend (new_array_p, copied_length); in ecma_builtin_array_prototype_object_slice()
929 ecma_value_t *to_buffer_p = ecma_fast_array_extend (new_array_p, copied_length); in ecma_builtin_array_prototype_object_slice()
1560 ecma_value_t *buffer_p = ecma_fast_array_extend (obj_p, new_length); in ecma_builtin_array_prototype_object_unshift()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c515 ecma_value_t *values_p = ecma_fast_array_extend (array_obj_p, old_length + values_length); in opfunc_append_array()