Home
last modified time | relevance | path

Searched refs:arg_count (Results 1 – 12 of 12) sorted by relevance

/PHP-7.1/sapi/apache2handler/
H A Dphp_functions.c259 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
262 …if (zend_parse_parameters(arg_count, "ss|b", &variable, &variable_len, &string_val, &string_val_le… in PHP_FUNCTION()
269 if (arg_count == 3) { in PHP_FUNCTION()
294 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
298 if (zend_parse_parameters(arg_count, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { in PHP_FUNCTION()
305 if (arg_count == 2) { in PHP_FUNCTION()
/PHP-7.1/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp394 int arg_count = zend_hash_num_elements(args); in umsg_format_helper() local
409 fargs.resize(arg_count); in umsg_format_helper()
410 farg_names.resize(arg_count); in umsg_format_helper()
637 fargs.empty() ? NULL : &fargs[0], arg_count, resultStr, err.code); in umsg_format_helper()
/PHP-7.1/ext/standard/
H A Dbasic_functions.h260 int arg_count; member
H A Dbasic_functions.c125 int arg_count; member
4979 for (i = 0; i < shutdown_function_entry->arg_count; i++) {
4991 for (i = 0; i < tick_function_entry->arg_count; i++) {
5020 shutdown_function_entry->arg_count - 1,
5041 tick_fe->arg_count - 1,
5131 shutdown_function_entry.arg_count = ZEND_NUM_ARGS();
5133 if (shutdown_function_entry.arg_count < 1) {
5751 tick_fe.arg_count = ZEND_NUM_ARGS();
5753 if (tick_fe.arg_count < 1) {
5785 for (i = 0; i < tick_fe.arg_count; i++) {
[all …]
/PHP-7.1/Zend/
H A Dzend_builtin_functions.c531 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local
555 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
557 if ((zend_ulong)requested_offset >= arg_count) { in ZEND_FUNCTION()
580 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local
593 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
595 array_init_size(return_value, arg_count); in ZEND_FUNCTION()
596 if (arg_count) { in ZEND_FUNCTION()
602 if (arg_count > first_extra_arg) { in ZEND_FUNCTION()
619 while (i < arg_count) { in ZEND_FUNCTION()
634 Z_ARRVAL_P(return_value)->nNumOfElements = arg_count; in ZEND_FUNCTION()
H A Dzend_API.c51 int arg_count; in zend_get_parameters() local
56 arg_count = ZEND_CALL_NUM_ARGS(EG(current_execute_data)); in zend_get_parameters()
58 if (param_count>arg_count) { in zend_get_parameters()
86 int arg_count; in zend_get_parameters_ex() local
93 if (param_count>arg_count) { in zend_get_parameters_ex()
112 int arg_count; in _zend_get_parameters_array_ex() local
117 if (param_count>arg_count) { in _zend_get_parameters_array_ex()
134 int arg_count; in zend_copy_parameters_array() local
139 if (param_count>arg_count) { in zend_copy_parameters_array()
811 int arg_count; in zend_parse_va_args() local
[all …]
H A Dzend_compile.c3150 uint32_t arg_count = 0; /* number of arguments not including unpacks */ in zend_compile_args() local
3166 opline->op2.num = arg_count; in zend_compile_args()
3167 opline->result.var = (uint32_t)(zend_intptr_t)ZEND_CALL_ARG(NULL, arg_count); in zend_compile_args()
3176 arg_count++; in zend_compile_args()
3251 return arg_count; in zend_compile_args()
3285 uint32_t arg_count; in zend_compile_call_common() local
3290 arg_count = zend_compile_args(args_ast, fbc); in zend_compile_call_common()
3293 opline->extended_value = arg_count; in zend_compile_call_common()
3296 opline->op1.num = zend_vm_calc_used_stack(arg_count, fbc); in zend_compile_call_common()
H A Dzend_vm_def.h4832 uint32_t arg_count = EX_NUM_ARGS();
4839 if (arg_num <= arg_count) {
4842 array_init_size(params, arg_count - arg_num + 1);
4852 } while (++arg_num <= arg_count);
4858 } while (++arg_num <= arg_count);
H A Dzend_vm_execute.h1482 uint32_t arg_count = EX_NUM_ARGS(); local
1489 if (arg_num <= arg_count) {
1492 array_init_size(params, arg_count - arg_num + 1);
1502 } while (++arg_num <= arg_count);
1508 } while (++arg_num <= arg_count);
/PHP-7.1/ext/soap/
H A Dsoap.c2615 int arg_count, argument
2715 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve…
2753 …request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_v…
2855 int arg_count; local
2921 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
2923 if (arg_count > 0) {
2924 real_args = safe_emalloc(sizeof(zval), arg_count, 0);
2936 if (arg_count > 0) {
4272 for (i = 0;i < arg_count;i++) {
4293 if (n > arg_count) {
[all …]
/PHP-7.1/ext/spl/
H A Dspl_iterators.c1395 int arg_count; in spl_dual_it_call_method() local
1406 arg_count = (zend_ulong) *p; in spl_dual_it_call_method()
1408 func_params = safe_emalloc(sizeof(zval **), arg_count, 0); in spl_dual_it_call_method()
1411 while (arg_count-- > 0) { in spl_dual_it_call_method()
1412 func_params[current] = (zval **) p - (arg_count-current); in spl_dual_it_call_method()
1415 arg_count = current; /* restore */ in spl_dual_it_call_method()
1417 …if (call_user_function_ex(EG(function_table), NULL, &func, &retval, arg_count, func_params, 0, NUL… in spl_dual_it_call_method()
/PHP-7.1/ext/session/
H A Dsession.c1794 shutdown_function_entry.arg_count = 1;
2330 shutdown_function_entry.arg_count = 1;

Completed in 199 milliseconds