Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c237 ecma_object_t *func_p = ecma_create_object (prototype_obj_p, in ecma_op_create_function_object() local
255 ecma_extended_object_t *ext_func_p = (ecma_extended_object_t *) func_p; in ecma_op_create_function_object()
266 ((ecma_static_function_t *) func_p)->bytecode_p = bytecode_data_p; in ecma_op_create_function_object()
282 return func_p; in ecma_op_create_function_object()
456 ecma_object_t *func_p = ecma_create_object (prototype_obj_p, in ecma_op_create_arrow_function_object() local
460 ecma_arrow_function_t *arrow_func_p = (ecma_arrow_function_t *) func_p; in ecma_op_create_arrow_function_object()
468 ((ecma_static_arrow_function_t *) func_p)->bytecode_p = bytecode_data_p; in ecma_op_create_arrow_function_object()
486 return func_p; in ecma_op_create_arrow_function_object()
/third_party/jerryscript/jerry-ext/arg/
Darg-transform-functions.c432 jerry_value_t *func_p = c_arg_p->dest; in jerryx_arg_transform_function() local
433 *func_p = jerry_acquire_value (js_arg); in jerryx_arg_transform_function()
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c885 opfunc_set_home_object (ecma_object_t *func_p, /**< function object */ in opfunc_set_home_object() argument
888 if (ecma_get_object_type (func_p) == ECMA_OBJECT_TYPE_FUNCTION) in opfunc_set_home_object()
890 JERRY_ASSERT (!ecma_get_object_is_builtin (func_p)); in opfunc_set_home_object()
892 …ECMA_SET_NON_NULL_POINTER_TAG (((ecma_extended_object_t *) func_p)->u.function.scope_cp, parent_en… in opfunc_set_home_object()
Dvm.c1267 ecma_object_t *func_p = ecma_get_object_from_value (left_value); in vm_loop() local
1269 JERRY_ASSERT (ecma_get_object_type (func_p) == ECMA_OBJECT_TYPE_FUNCTION); in vm_loop()
1271 ecma_extended_object_t *ext_func_p = (ecma_extended_object_t *) func_p; in vm_loop()