Home
last modified time | relevance | path

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

/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeMIPS_64.c221 sljit_s32 arg_count = 0; in call_with_args() local
238 arg_count++; in call_with_args()
242 arg_count++; in call_with_args()
253 if (arg_count != float_arg_count) in call_with_args()
255 else if (arg_count == 1) in call_with_args()
257 arg_count--; in call_with_args()
263 else if (arg_count == 1) in call_with_args()
265 arg_count--; in call_with_args()
269 if (arg_count != word_arg_count) in call_with_args()
271 else if (arg_count == 1) in call_with_args()
[all …]
H A DsljitNativeX86_64.c801 sljit_s32 arg_count = 0; in call_with_args() local
819 arg_count++; in call_with_args()
822 if (arg_count != float_arg_count) in call_with_args()
826 arg_count++; in call_with_args()
829 if (arg_count != word_arg_count || arg_count != word_arg_regs[arg_count]) { in call_with_args()
849 if (arg_count != float_arg_count) in call_with_args()
851 arg_count--; in call_with_args()
855 if (arg_count != float_arg_count) in call_with_args()
857 arg_count--; in call_with_args()
861 if (arg_count != word_arg_count || arg_count != word_arg_regs[arg_count]) in call_with_args()
[all …]
H A DsljitNativePPC_64.c509 sljit_s32 arg_count = 0; in call_with_args() local
525 arg_count++; in call_with_args()
528 arg_count++; in call_with_args()
531 if (arg_count != word_arg_count && arg_count == reg) { in call_with_args()
545 arg_count--; in call_with_args()
548 if (arg_count != word_arg_count) in call_with_args()
549 FAIL_IF(push_inst(compiler, OR | S(word_arg_count) | A(arg_count) | B(word_arg_count))); in call_with_args()
551 arg_count--; in call_with_args()
H A DsljitNativeMIPS_common.c978 arg_count = 0; in sljit_emit_enter()
984 arg_count++; in sljit_emit_enter()
985 arg_count++; in sljit_emit_enter()
988 arg_count++; in sljit_emit_enter()
1047 arg_count = 0; in sljit_emit_enter()
1063 arg_count++; in sljit_emit_enter()
1082 arg_count++; in sljit_emit_enter()
1101 } else if (word_arg_count != arg_count + 1 || arg_count == 0) in sljit_emit_enter()
1106 if (arg_count < 4) in sljit_emit_enter()
1112 arg_count++; in sljit_emit_enter()
[all …]
H A DsljitNativePPC_common.c808 sljit_s32 arg_count = 0; in sljit_emit_enter() local
892 } else if (arg_count != word_arg_count) in sljit_emit_enter()
897 FAIL_IF(push_inst(compiler, OR | S(SLJIT_R0 + arg_count) | A(tmp) | B(SLJIT_R0 + arg_count))); in sljit_emit_enter()
909 arg_count++; in sljit_emit_enter()
/php-src/sapi/apache2handler/
H A Dphp_functions.c257 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
260 …if (zend_parse_parameters(arg_count, "ss|b", &variable, &variable_len, &string_val, &string_val_le… in PHP_FUNCTION()
267 if (arg_count == 3) { in PHP_FUNCTION()
291 int arg_count = ZEND_NUM_ARGS(); in PHP_FUNCTION() local
295 if (zend_parse_parameters(arg_count, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { in PHP_FUNCTION()
302 if (arg_count == 2) { in PHP_FUNCTION()
/php-src/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp369 int arg_count = zend_hash_num_elements(args); in umsg_format_helper() local
384 fargs.resize(arg_count); in umsg_format_helper()
385 farg_names.resize(arg_count); in umsg_format_helper()
601 fargs.empty() ? NULL : &fargs[0], arg_count, resultStr, err.code); in umsg_format_helper()
/php-src/Zend/
H A Dzend_builtin_functions.c187 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local
211 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
213 if ((zend_ulong)requested_offset >= arg_count) { in ZEND_FUNCTION()
234 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local
249 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION()
251 if (arg_count) { in ZEND_FUNCTION()
252 array_init_size(return_value, arg_count); in ZEND_FUNCTION()
258 if (arg_count > first_extra_arg) { in ZEND_FUNCTION()
276 while (i < arg_count) { in ZEND_FUNCTION()
292 Z_ARRVAL_P(return_value)->nNumOfElements = arg_count; in ZEND_FUNCTION()
H A Dzend_API.c51 uint32_t arg_count; in zend_get_parameters_array_ex() local
54 arg_count = ZEND_CALL_NUM_ARGS(EG(current_execute_data)); in zend_get_parameters_array_ex()
56 if (param_count>arg_count) { in zend_get_parameters_array_ex()
73 uint32_t arg_count; in zend_copy_parameters_array() local
76 arg_count = ZEND_CALL_NUM_ARGS(EG(current_execute_data)); in zend_copy_parameters_array()
78 if (param_count>arg_count) { in zend_copy_parameters_array()
H A Dzend_vm_def.h5617 uint32_t arg_count = EX_NUM_ARGS();
5624 if (arg_num <= arg_count) {
5644 } while (++arg_num <= arg_count); in ZEND_HASH_FILL_PACKED()
5650 } while (++arg_num <= arg_count); in ZEND_HASH_FILL_PACKED()
9477 uint32_t arg_count, result_size, skip; variable
9479 arg_count = EX_NUM_ARGS();
9482 if (arg_count < skip) {
9485 result_size = arg_count - skip;
9489 result_size = arg_count;
9503 if (arg_count > first_extra_arg) { in ZEND_HASH_FILL_PACKED()
[all …]
H A Dzend_compile.c3658 uint32_t arg_count = 0; /* number of arguments not including unpacks */ in zend_compile_args() local
3688 opline->op2.num = arg_count; in zend_compile_args()
3689 opline->result.var = EX_NUM_TO_VAR(arg_count - 1); in zend_compile_args()
3706 if (arg_num == arg_count + 1 && !may_have_undef) { in zend_compile_args()
3709 arg_count++; in zend_compile_args()
3733 arg_count++; in zend_compile_args()
3850 return arg_count; in zend_compile_args()
3903 uint32_t arg_count = zend_compile_args(args_ast, fbc, &may_have_extra_named_args); in zend_compile_call_common() local
3908 opline->extended_value = arg_count; in zend_compile_call_common()
3911 opline->op1.num = zend_vm_calc_used_stack(arg_count, fbc); in zend_compile_call_common()
H A Dzend_vm_execute.h4066 uint32_t arg_count = EX_NUM_ARGS(); in ZEND_RECV_VARIADIC_SPEC_UNUSED_HANDLER() local
4073 if (arg_num <= arg_count) { in ZEND_RECV_VARIADIC_SPEC_UNUSED_HANDLER()
11153 arg_count = EX_NUM_ARGS(); in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER()
11156 if (arg_count < skip) { in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER()
11159 result_size = arg_count - skip; in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER()
11163 result_size = arg_count; in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER()
11200 while (i < arg_count) { in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER()
37260 arg_count = EX_NUM_ARGS(); in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER()
37263 if (arg_count < skip) { in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER()
37270 result_size = arg_count; in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER()
[all …]
/php-src/ext/soap/
H A Dsoap.c2151 int arg_count, argument
2254 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve…
2291 …request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_v…
2390 int arg_count; local
2462 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
2464 if (arg_count > 0) {
2465 real_args = safe_emalloc(sizeof(zval), arg_count, 0);
2483 if (arg_count > 0) {
3795 for (i = 0;i < arg_count;i++) {
3816 if (n > arg_count) {
[all …]
/php-src/ext/ffi/
H A Dffi.c914 uint32_t arg_count; member
927 for (int i = 0; i < callback_data->arg_count; ++i) { in zend_ffi_callback_hash_dtor()
952 fci.param_count = callback_data->arg_count; in zend_ffi_callback_trampoline()
971 if (callback_data->arg_count) { in zend_ffi_callback_trampoline()
974 for (n = 0; n < callback_data->arg_count; n++) { in zend_ffi_callback_trampoline()
997 uint32_t arg_count; in zend_ffi_create_callback() local
1029 callback_data->arg_count = arg_count; in zend_ffi_create_callback()
2746 uint32_t n, arg_count; in ZEND_FUNCTION() local
2756 if (arg_count > EX_NUM_ARGS()) { in ZEND_FUNCTION()
2801 if (arg_count != EX_NUM_ARGS()) { in ZEND_FUNCTION()
[all …]

Completed in 297 milliseconds