Searched refs:arguments_p (Results 1 – 4 of 4) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-regexp-object.c | 2581 ecma_collection_t *arguments_p = ecma_new_collection (); in ecma_regexp_replace_helper_fast() local 2586 ecma_collection_push_back (arguments_p, capture); in ecma_regexp_replace_helper_fast() 2589 ecma_collection_push_back (arguments_p, ecma_make_uint32_value (ctx_p->index)); in ecma_regexp_replace_helper_fast() 2591 ecma_collection_push_back (arguments_p, ecma_make_string_value (string_p)); in ecma_regexp_replace_helper_fast() 2596 arguments_p->buffer_p, in ecma_regexp_replace_helper_fast() 2597 arguments_p->item_count); in ecma_regexp_replace_helper_fast() 2599 ecma_collection_free (arguments_p); in ecma_regexp_replace_helper_fast() 3038 ecma_collection_t *arguments_p = ecma_new_collection (); in ecma_regexp_replace_helper() local 3039 ecma_collection_push_back (arguments_p, ecma_make_string_value (matched_str_p)); in ecma_regexp_replace_helper() 3048 ecma_collection_free (arguments_p); in ecma_regexp_replace_helper() [all …]
|
/third_party/jerryscript/jerry-core/vm/ |
D | vm.c | 553 ecma_value_t *arguments_p; in vm_super_call() local 559 arguments_p = collection_p->buffer_p; in vm_super_call() 565 arguments_p = frame_ctx_p->stack_top_p; in vm_super_call() 586 arguments_p, in vm_super_call() 610 ecma_fast_free_value (arguments_p[i]); in vm_super_call() 1915 … ecma_collection_t *arguments_p = opfunc_spread_arguments (stack_top_p, arguments_list_len); in vm_loop() local 1917 if (JERRY_UNLIKELY (arguments_p == NULL)) in vm_loop() 1924 ECMA_SET_INTERNAL_VALUE_POINTER (stack_top_p[-1], arguments_p); in vm_loop() 2123 … ecma_collection_t *arguments_p = opfunc_spread_arguments (stack_top_p, arguments_list_len); in vm_loop() local 2125 if (JERRY_UNLIKELY (arguments_p == NULL)) in vm_loop() [all …]
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/ |
D | ecma-builtin-typedarray-prototype.c | 1298 ecma_value_t arguments_p[3] = in ecma_builtin_typedarray_prototype_subarray() local 1305 ret_value = ecma_typedarray_helper_dispatch_construct (arguments_p, 3, info.id); in ecma_builtin_typedarray_prototype_subarray() 1307 ecma_free_value (arguments_p[1]); in ecma_builtin_typedarray_prototype_subarray() 1308 ecma_free_value (arguments_p[2]); in ecma_builtin_typedarray_prototype_subarray()
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 3978 ecma_value_t arguments_p[3] = in jerry_create_dataview() local 3985 return jerry_return (ecma_op_dataview_create (arguments_p, 3)); in jerry_create_dataview() 4241 ecma_value_t arguments_p[3] = in jerry_create_typedarray_for_arraybuffer_sz() local 4248 …ecma_value_t array_value = ecma_op_create_typedarray (arguments_p, 3, prototype_obj_p, element_siz… in jerry_create_typedarray_for_arraybuffer_sz() 4249 ecma_free_value (arguments_p[1]); in jerry_create_typedarray_for_arraybuffer_sz() 4250 ecma_free_value (arguments_p[2]); in jerry_create_typedarray_for_arraybuffer_sz()
|