Searched refs:func_p (Results 1 – 4 of 4) sorted by relevance
237 ecma_object_t *func_p = ecma_create_object (prototype_obj_p, in ecma_op_create_function_object() local255 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() local460 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()
432 jerry_value_t *func_p = c_arg_p->dest; in jerryx_arg_transform_function() local433 *func_p = jerry_acquire_value (js_arg); in jerryx_arg_transform_function()
885 opfunc_set_home_object (ecma_object_t *func_p, /**< function object */ in opfunc_set_home_object() argument888 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()
1267 ecma_object_t *func_p = ecma_get_object_from_value (left_value); in vm_loop() local1269 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()