Lines Matching refs:param_count
46 ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array) /* {{{ */ in _zend_get_parameters_array_ex() argument
54 if (param_count>arg_count) { in _zend_get_parameters_array_ex()
58 while (param_count-->0) { in _zend_get_parameters_array_ex()
68 ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array) /* {{{ */ in zend_copy_parameters_array() argument
76 if (param_count>arg_count) { in zend_copy_parameters_array()
80 while (param_count-->0) { in zend_copy_parameters_array()
3514 fci->param_count = 0; in zend_fcall_info_init()
3526 zval *end = p + fci->param_count; in zend_fcall_info_args_clear()
3537 fci->param_count = 0; in zend_fcall_info_args_clear()
3541 ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params) /* {… in zend_fcall_info_args_save() argument
3543 *param_count = fci->param_count; in zend_fcall_info_args_save()
3545 fci->param_count = 0; in zend_fcall_info_args_save()
3550 ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval *params) /* … in zend_fcall_info_args_restore() argument
3553 fci->param_count = param_count; in zend_fcall_info_args_restore()
3573 fci->param_count = zend_hash_num_elements(Z_ARRVAL_P(args)); in zend_fcall_info_args_ex()
3574 fci->params = params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_args_ex()
3608 fci->param_count = argc; in zend_fcall_info_argp()
3609 fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_argp()
3632 fci->param_count = argc; in zend_fcall_info_argv()
3633 fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval)); in zend_fcall_info_argv()