Lines Matching refs:num_args

260 …d_execute_data *call, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_…  in zend_vm_init_call_frame()  argument
266 ZEND_CALL_NUM_ARGS(call) = num_args; in zend_vm_init_call_frame()
269 …(uint32_t used_stack, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_… in zend_vm_stack_push_call_frame_ex() argument
278 …zend_vm_init_call_frame(call, call_info | ZEND_CALL_ALLOCATED, func, num_args, object_or_called_sc… in zend_vm_stack_push_call_frame_ex()
282 zend_vm_init_call_frame(call, call_info, func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame_ex()
287 static zend_always_inline uint32_t zend_vm_calc_used_stack(uint32_t num_args, zend_function *func) in zend_vm_calc_used_stack() argument
289 uint32_t used_stack = ZEND_CALL_FRAME_SLOT + num_args + func->common.T; in zend_vm_calc_used_stack()
292 used_stack += func->op_array.last_var - MIN(func->op_array.num_args, num_args); in zend_vm_calc_used_stack()
297 …stack_push_call_frame(uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_… in zend_vm_stack_push_call_frame() argument
299 uint32_t used_stack = zend_vm_calc_used_stack(num_args, func); in zend_vm_stack_push_call_frame()
302 func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame()
308 uint32_t count = ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args; in zend_vm_stack_free_extra_args_ex()
324 uint32_t num_args = ZEND_CALL_NUM_ARGS(call); in zend_vm_stack_free_args() local
326 if (EXPECTED(num_args > 0)) { in zend_vm_stack_free_args()
332 } while (--num_args); in zend_vm_stack_free_args()