param_count        48 Zend/zend_API.c ZEND_API int zend_get_parameters(int ht, int param_count, ...) /* {{{ */
param_count        57 Zend/zend_API.c 	if (param_count>arg_count) {
param_count        61 Zend/zend_API.c 	va_start(ptr, param_count);
param_count        63 Zend/zend_API.c 	while (param_count-->0) {
param_count        83 Zend/zend_API.c ZEND_API int zend_get_parameters_ex(int param_count, ...) /* {{{ */
param_count        92 Zend/zend_API.c 	if (param_count>arg_count) {
param_count        96 Zend/zend_API.c 	va_start(ptr, param_count);
param_count        97 Zend/zend_API.c 	while (param_count-->0) {
param_count       108 Zend/zend_API.c ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array) /* {{{ */
param_count       116 Zend/zend_API.c 	if (param_count>arg_count) {
param_count       120 Zend/zend_API.c 	while (param_count-->0) {
param_count       130 Zend/zend_API.c ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array) /* {{{ */
param_count       138 Zend/zend_API.c 	if (param_count>arg_count) {
param_count       142 Zend/zend_API.c 	while (param_count-->0) {
param_count      3424 Zend/zend_API.c 	fci->param_count = 0;
param_count      3437 Zend/zend_API.c 		zval *end = p + fci->param_count;
param_count      3448 Zend/zend_API.c 	fci->param_count = 0;
param_count      3452 Zend/zend_API.c ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params) /* {{{ */
param_count      3454 Zend/zend_API.c 	*param_count = fci->param_count;
param_count      3456 Zend/zend_API.c 	fci->param_count = 0;
param_count      3461 Zend/zend_API.c ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval *params) /* {{{ */
param_count      3464 Zend/zend_API.c 	fci->param_count = param_count;
param_count      3484 Zend/zend_API.c 	fci->param_count = zend_hash_num_elements(Z_ARRVAL_P(args));
param_count      3485 Zend/zend_API.c 	fci->params = params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval));
param_count      3521 Zend/zend_API.c 		fci->param_count = argc;
param_count      3522 Zend/zend_API.c 		fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval));
param_count      3545 Zend/zend_API.c 		fci->param_count = argc;
param_count      3546 Zend/zend_API.c 		fci->params = (zval *) erealloc(fci->params, fci->param_count * sizeof(zval));
param_count        53 Zend/zend_API.h 	uint32_t param_count;
param_count       248 Zend/zend_API.h ZEND_API int zend_get_parameters(int ht, int param_count, ...);
param_count       249 Zend/zend_API.h ZEND_API ZEND_ATTRIBUTE_DEPRECATED int zend_get_parameters_ex(int param_count, ...);
param_count       250 Zend/zend_API.h ZEND_API int _zend_get_parameters_array_ex(int param_count, zval *argument_array);
param_count       253 Zend/zend_API.h ZEND_API int zend_copy_parameters_array(int param_count, zval *argument_array);
param_count       255 Zend/zend_API.h #define zend_get_parameters_array(ht, param_count, argument_array) \
param_count       256 Zend/zend_API.h 	_zend_get_parameters_array_ex(param_count, argument_array)
param_count       257 Zend/zend_API.h #define zend_get_parameters_array_ex(param_count, argument_array) \
param_count       258 Zend/zend_API.h 	_zend_get_parameters_array_ex(param_count, argument_array)
param_count       471 Zend/zend_API.h ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[]);
param_count       472 Zend/zend_API.h ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separation, zend_array *symbol_table);
param_count       497 Zend/zend_API.h ZEND_API void zend_fcall_info_args_save(zend_fcall_info *fci, int *param_count, zval **params);
param_count       501 Zend/zend_API.h ZEND_API void zend_fcall_info_args_restore(zend_fcall_info *fci, int param_count, zval *params);
param_count       150 Zend/zend_closures.c 	fci.param_count = my_param_count;
param_count       736 Zend/zend_exceptions.c 		fci.param_count = 0;
param_count       665 Zend/zend_execute_API.c int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[]) /* {{{ */
param_count       667 Zend/zend_execute_API.c 	return call_user_function_ex(function_table, object, function_name, retval_ptr, param_count, params, 1, NULL);
param_count       671 Zend/zend_execute_API.c int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separation, zend_array *symbol_table) /* {{{ */
param_count       680 Zend/zend_execute_API.c 	fci.param_count = param_count;
param_count       774 Zend/zend_execute_API.c 		func, fci->param_count, fci_cache->called_scope, fci_cache->object);
param_count       799 Zend/zend_execute_API.c 	for (i=0; i<fci->param_count; i++) {
param_count      1032 Zend/zend_execute_API.c 	fcall_info.param_count = 1;
param_count        34 Zend/zend_interfaces.c ZEND_API zval* zend_call_method(zval *object, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, size_t function_name_len, zval *retval_ptr, int param_count, zval* arg1, zval* arg2)
param_count        43 Zend/zend_interfaces.c 	if (param_count > 0) {
param_count        46 Zend/zend_interfaces.c 	if (param_count > 1) {
param_count        55 Zend/zend_interfaces.c 	fci.param_count = param_count;
param_count       117 Zend/zend_interfaces.c 	if (param_count > 0 && Z_ISREF(params[0]) && !Z_ISREF_P(arg1)) {
param_count       120 Zend/zend_interfaces.c 	if (param_count > 1 && Z_ISREF(params[1]) && !Z_ISREF_P(arg2)) {
param_count        41 Zend/zend_interfaces.h ZEND_API zval* zend_call_method(zval *object_pp, zend_class_entry *obj_ce, zend_function **fn_proxy, const char *function_name, size_t function_name_len, zval *retval, int param_count, zval* arg1, zval* arg2);
param_count      1345 ext/curl/interface.c 			fci.param_count = 2;
param_count      1396 ext/curl/interface.c 			fci.param_count = 3;
param_count      1453 ext/curl/interface.c 			fci.param_count = 5;
param_count      1516 ext/curl/interface.c 			fci.param_count = 3;
param_count      1585 ext/curl/interface.c 			fci.param_count = 2;
param_count       113 ext/dom/xpath.c 	fci.param_count = nargs - 1;
param_count       114 ext/dom/xpath.c 	if (fci.param_count > 0) {
param_count       115 ext/dom/xpath.c 		fci.params = safe_emalloc(fci.param_count, sizeof(zval), 0);
param_count       180 ext/dom/xpath.c 		if (fci.param_count > 0) {
param_count       232 ext/dom/xpath.c 	if (fci.param_count > 0) {
param_count       236 ext/intl/converter/converter.c 	objval->to_cb.param_count    = 4;
param_count       318 ext/intl/converter/converter.c 	objval->from_cb.param_count = 4;
param_count       190 ext/intl/uchar/uchar.c 	context->fci.param_count = 3;
param_count       304 ext/intl/uchar/uchar.c 	context->fci.param_count = 3;
param_count       621 ext/libxml/libxml.c 	fci->param_count = sizeof(params)/sizeof(*params);
param_count       967 ext/mbstring/php_mbregex.c 				arg_replace_fci.param_count = 1;
param_count      1300 ext/mysqli/mysqli.c 			fci.param_count = 0;
param_count       280 ext/mysqlnd/mysqlnd_ps.c 		for (;i < stmt->param_count; i++) {
param_count       328 ext/mysqlnd/mysqlnd_ps.c 	stmt->param_count = prepare_resp->param_count;
param_count       426 ext/mysqlnd/mysqlnd_ps.c 	if (stmt_to_prepare->param_count) {
param_count       698 ext/mysqlnd/mysqlnd_ps.c 	if (stmt->param_count) {
param_count       706 ext/mysqlnd/mysqlnd_ps.c 		for (i = 0; i < stmt->param_count; i++) {
param_count      1252 ext/mysqlnd/mysqlnd_ps.c 			for (i = 0; i < stmt->param_count; i++) {
param_count      1352 ext/mysqlnd/mysqlnd_ps.c 	if (param_no >= stmt->param_count) {
param_count      1441 ext/mysqlnd/mysqlnd_ps.c 	DBG_INF_FMT("stmt=%lu param_count=%u", stmt->stmt_id, stmt->param_count);
param_count      1455 ext/mysqlnd/mysqlnd_ps.c 	if (stmt->param_count) {
param_count      1468 ext/mysqlnd/mysqlnd_ps.c 			for (i = 0; i < stmt->param_count; i++) {
param_count      1481 ext/mysqlnd/mysqlnd_ps.c 		for (i = 0; i < stmt->param_count; i++) {
param_count      1510 ext/mysqlnd/mysqlnd_ps.c 	DBG_INF_FMT("stmt=%lu param_no=%u param_count=%u type=%u", stmt->stmt_id, param_no, stmt->param_count, type);
param_count      1518 ext/mysqlnd/mysqlnd_ps.c 	if (param_no >= stmt->param_count) {
param_count      1526 ext/mysqlnd/mysqlnd_ps.c 	if (stmt->param_count) {
param_count      1528 ext/mysqlnd/mysqlnd_ps.c 			stmt->param_bind = mnd_pecalloc(stmt->param_count, sizeof(MYSQLND_PARAM_BIND), stmt->persistent);
param_count      1564 ext/mysqlnd/mysqlnd_ps.c 	DBG_INF_FMT("stmt=%lu param_count=%u", stmt->stmt_id, stmt->param_count);
param_count      1575 ext/mysqlnd/mysqlnd_ps.c 	if (stmt->param_count) {
param_count      1753 ext/mysqlnd/mysqlnd_ps.c MYSQLND_METHOD(mysqlnd_stmt, param_count)(const MYSQLND_STMT * const s)
param_count      1756 ext/mysqlnd/mysqlnd_ps.c 	return stmt? stmt->param_count : 0;
param_count      1806 ext/mysqlnd/mysqlnd_ps.c 	if (!stmt || !stmt->param_count) {
param_count      2129 ext/mysqlnd/mysqlnd_ps.c 	DBG_INF_FMT("stmt=%lu param_bind=%p param_count=%u", stmt->stmt_id, stmt->param_bind, stmt->param_count);
param_count      2139 ext/mysqlnd/mysqlnd_ps.c 		for (i = 0; i < stmt->param_count; i++) {
param_count      2276 ext/mysqlnd/mysqlnd_ps.c 	DBG_RETURN(mnd_pecalloc(stmt->param_count, sizeof(MYSQLND_PARAM_BIND), stmt->persistent));
param_count      2350 ext/mysqlnd/mysqlnd_ps.c 	MYSQLND_METHOD(mysqlnd_stmt, param_count),
param_count       517 ext/mysqlnd/mysqlnd_ps_codec.c mysqlnd_stmt_copy_it(zval ** copies, zval * original, unsigned int param_count, unsigned int current)
param_count       520 ext/mysqlnd/mysqlnd_ps_codec.c 		*copies = mnd_ecalloc(param_count, sizeof(zval));
param_count       537 ext/mysqlnd/mysqlnd_ps_codec.c 		for (i = 0; i < stmt->param_count; i++) {
param_count       580 ext/mysqlnd/mysqlnd_ps_codec.c 	for (i = 0; i < stmt->param_count; i++) {
param_count       588 ext/mysqlnd/mysqlnd_ps_codec.c 				PASS != mysqlnd_stmt_copy_it(copies_param, parameter, stmt->param_count, i))
param_count       636 ext/mysqlnd/mysqlnd_ps_codec.c 	for (i = 0; i < stmt->param_count; i++) {
param_count       681 ext/mysqlnd/mysqlnd_ps_codec.c 	for (i = 0; i < stmt->param_count; i++) {
param_count       693 ext/mysqlnd/mysqlnd_ps_codec.c 			for (j = i + 1; j < stmt->param_count; j++) {
param_count       697 ext/mysqlnd/mysqlnd_ps_codec.c 						if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) {
param_count       712 ext/mysqlnd/mysqlnd_ps_codec.c 						if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) {
param_count       747 ext/mysqlnd/mysqlnd_ps_codec.c 						if (PASS != mysqlnd_stmt_copy_it(copies_param, the_var, stmt->param_count, i)) {
param_count       771 ext/mysqlnd/mysqlnd_ps_codec.c 	for (i = 0; i < stmt->param_count; i++) {
param_count       846 ext/mysqlnd/mysqlnd_ps_codec.c 		unsigned int null_count = (stmt->param_count + 7) / 8;
param_count       873 ext/mysqlnd/mysqlnd_ps_codec.c 		if (FAIL == mysqlnd_stmt_execute_check_n_enlarge_buffer(buf, p, buf_len, provided_buffer, stmt->param_count * 2)) {
param_count      1997 ext/mysqlnd/mysqlnd_wireprotocol.c 	packet->param_count = uint2korr(p);
param_count      2010 ext/mysqlnd/mysqlnd_wireprotocol.c 				packet->stmt_id, packet->field_count, packet->param_count);
param_count       263 ext/mysqlnd/mysqlnd_wireprotocol.h 	unsigned int	param_count;
param_count       444 ext/pdo/pdo_dbh.c 		fci.param_count = 0;
param_count       747 ext/pdo/pdo_stmt.c 		fci->param_count = 0;
param_count       785 ext/pdo/pdo_stmt.c 	fci->param_count = num_args; /* probably less */
param_count       823 ext/pdo/pdo_stmt.c 		stmt->fetch.cls.fci.param_count = 0;
param_count       926 ext/pdo/pdo_stmt.c 					old_arg_count = stmt->fetch.cls.fci.param_count;
param_count      1165 ext/pdo/pdo_stmt.c 					stmt->fetch.cls.fci.param_count = old_arg_count;
param_count      1170 ext/pdo/pdo_stmt.c 				stmt->fetch.func.fci.param_count = idx;
param_count      1319 ext/pdo/pdo_stmt.c 	old_arg_count = stmt->fetch.cls.fci.param_count;
param_count      1351 ext/pdo/pdo_stmt.c 	stmt->fetch.cls.fci.param_count = old_arg_count;
param_count      1402 ext/pdo/pdo_stmt.c 	old_arg_count = stmt->fetch.cls.fci.param_count;
param_count      1525 ext/pdo/pdo_stmt.c 	stmt->fetch.cls.fci.param_count = old_arg_count;
param_count       333 ext/pdo_sqlite/sqlite_driver.c 	fc->fci.param_count = fake_argc;
param_count       488 ext/pdo_sqlite/sqlite_driver.c 	collation->fc.fci.param_count = 2;
param_count      2798 ext/pgsql/pgsql.c 			fci.param_count = 0;
param_count       681 ext/phar/phar_object.c 		fci.param_count = 1;
param_count      1429 ext/phar/util.c 	fci.param_count = 3;
param_count      1398 ext/reflection/php_reflection.c 	fci.param_count = ctor_argc;
param_count      1430 ext/reflection/php_reflection.c 	fci.param_count = 2;
param_count      1933 ext/reflection/php_reflection.c 	fci.param_count = num_args;
param_count      1993 ext/reflection/php_reflection.c 	fci.param_count = argc;
param_count      3224 ext/reflection/php_reflection.c 	fci.param_count = num_args - 1;
param_count      3331 ext/reflection/php_reflection.c 	fci.param_count = argc;
param_count      4629 ext/reflection/php_reflection.c 		fci.param_count = num_args;
param_count      4733 ext/reflection/php_reflection.c 		fci.param_count = argc;
param_count        31 ext/soap/php_packet_soap.c 	int param_count = 0;
param_count       334 ext/soap/php_packet_soap.c 					param_count++;
param_count       366 ext/soap/php_packet_soap.c 						++param_count;
param_count       375 ext/soap/php_packet_soap.c 		if (param_count == 0) {
param_count       378 ext/soap/php_packet_soap.c 		} else if (param_count == 1) {
param_count       961 ext/soap/soap.c 	fci.param_count = 0;
param_count      3756 ext/soap/soap.c 	int param_count;
param_count      3784 ext/soap/soap.c 			param_count = zend_hash_num_elements(function->responseParameters);
param_count      3786 ext/soap/soap.c 		  param_count = 0;
param_count      3789 ext/soap/soap.c 	  param_count = 1;
param_count      3792 ext/soap/soap.c 	if (param_count == 1) {
param_count      3819 ext/soap/soap.c 	} else if (param_count > 1 && Z_TYPE_P(ret) == IS_ARRAY) {
param_count      2081 ext/spl/spl_directory.c 	fci.param_count = num_args;
param_count        70 ext/spl/spl_engine.h 	fci.param_count = argc;
param_count      2016 ext/spl/spl_iterators.c 	fci->param_count = 3;
param_count       703 ext/sqlite3/sqlite3.c 	fc->fci.param_count = fake_argc;
param_count       862 ext/sqlite3/sqlite3.c 	collation->fci.fci.param_count = 2;
param_count       988 ext/standard/array.c 	BG(user_compare_fci).param_count = 2;
param_count      1116 ext/standard/array.c 	BG(user_compare_fci).param_count = 2;
param_count      1435 ext/standard/array.c 	BG(array_walk_fci).param_count = userdata ? 3 : 2;
param_count      3832 ext/standard/array.c 	BG(user_compare_fci).param_count = 2;
param_count      5136 ext/standard/array.c 	fci.param_count = 2;
param_count      5190 ext/standard/array.c 			fci.param_count = 2;
param_count      5193 ext/standard/array.c 			fci.param_count = 1;
param_count      5295 ext/standard/array.c 			fci.param_count = 1;
param_count      5384 ext/standard/array.c 				fci.param_count = n_arrays;
param_count      4770 ext/standard/basic_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) {
param_count      4776 ext/standard/basic_functions.c 		Z_PARAM_VARIADIC('*', fci.params, fci.param_count)
param_count      4828 ext/standard/basic_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &fci, &fci_cache, &fci.params, &fci.param_count) == FAILURE) {
param_count       491 ext/xml/xml.c  		fci.param_count = argc;
param_count       227 ext/xsl/xsltprocessor.c 	fci.param_count = nargs - 1;
param_count       228 ext/xsl/xsltprocessor.c 	if (fci.param_count > 0) {
param_count       229 ext/xsl/xsltprocessor.c 		args = safe_emalloc(fci.param_count, sizeof(zval), 0);
param_count       299 ext/xsl/xsltprocessor.c 	if (fci.param_count > 0) {
param_count       311 ext/xsl/xsltprocessor.c 		if (fci.param_count > 0) {
param_count       371 ext/xsl/xsltprocessor.c 	if (fci.param_count > 0) {
param_count       307 main/streams/userspace.c 		fci.param_count = 0;
param_count       186 sapi/phpdbg/phpdbg_prompt.c 				fci.param_count = 0;
param_count       192 sapi/phpdbg/phpdbg_prompt.c 			phpdbg_debug("created %d params from arguments", fci.param_count);