Lines Matching refs:num_args

221 …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
227 ZEND_CALL_NUM_ARGS(call) = num_args; in zend_vm_init_call_frame()
230 …(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
239 …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()
243 zend_vm_init_call_frame(call, call_info, func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame_ex()
248 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
250 uint32_t used_stack = ZEND_CALL_FRAME_SLOT + num_args; in zend_vm_calc_used_stack()
253 used_stack += func->op_array.last_var + func->op_array.T - MIN(func->op_array.num_args, num_args); in zend_vm_calc_used_stack()
258 …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
260 uint32_t used_stack = zend_vm_calc_used_stack(num_args, func); in zend_vm_stack_push_call_frame()
263 func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame()
269 uint32_t count = ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args; in zend_vm_stack_free_extra_args_ex()
285 uint32_t num_args = ZEND_CALL_NUM_ARGS(call); in zend_vm_stack_free_args() local
287 if (EXPECTED(num_args > 0)) { in zend_vm_stack_free_args()
293 } while (--num_args); in zend_vm_stack_free_args()