Lines Matching refs:param_count

49 ZEND_API zend_result zend_get_parameters_array_ex(uint32_t param_count, zval *argument_array) /* {{…  in zend_get_parameters_array_ex()  argument
57 if (param_count>arg_count) { in zend_get_parameters_array_ex()
61 while (param_count-->0) { in zend_get_parameters_array_ex()
71 ZEND_API zend_result zend_copy_parameters_array(uint32_t param_count, zval *argument_array) /* {{{ … in zend_copy_parameters_array() argument
79 if (param_count>arg_count) { in zend_copy_parameters_array()
83 while (param_count-->0) { in zend_copy_parameters_array()
1850 …nit_with_constructor(zval *arg, zend_class_entry *class_type, uint32_t param_count, zval *params, … in object_init_with_constructor() argument
1900 param_count, in object_init_with_constructor()
4313 fci->param_count = 0; in zend_fcall_info_init()
4325 zval *end = p + fci->param_count; in zend_fcall_info_args_clear()
4336 fci->param_count = 0; in zend_fcall_info_args_clear()
4340 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, uint32_t *param_count, zval **params)… in zend_fcall_info_args_save() argument
4342 *param_count = fci->param_count; in zend_fcall_info_args_save()
4344 fci->param_count = 0; in zend_fcall_info_args_save()
4349 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, uint32_t param_count, zval *params… in zend_fcall_info_args_restore() argument
4352 fci->param_count = param_count; in zend_fcall_info_args_restore()
4372 fci->param_count = zend_hash_num_elements(Z_ARRVAL_P(args)); in zend_fcall_info_args_ex()
4373 fci->params = params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_args_ex()
4401 fci->param_count = argc; in zend_fcall_info_argp()
4402 fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_argp()
4417 fci->param_count = argc; in zend_fcall_info_argv()
4418 fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_argv()