/php-src/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeMIPS_64.c | 221 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 D | sljitNativeX86_64.c | 805 sljit_s32 arg_count = 0; in call_with_args() local 823 arg_count++; in call_with_args() 826 if (arg_count != float_arg_count) in call_with_args() 830 arg_count++; in call_with_args() 833 if (arg_count != word_arg_count || arg_count != word_arg_regs[arg_count]) { in call_with_args() 853 if (arg_count != float_arg_count) in call_with_args() 855 arg_count--; in call_with_args() 859 if (arg_count != float_arg_count) in call_with_args() 861 arg_count--; in call_with_args() 865 if (arg_count != word_arg_count || arg_count != word_arg_regs[arg_count]) in call_with_args() [all …]
|
H A D | sljitNativePPC_64.c | 509 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 D | sljitNativeMIPS_common.c | 962 arg_count = 0; in sljit_emit_enter() 968 arg_count++; in sljit_emit_enter() 969 arg_count++; in sljit_emit_enter() 972 arg_count++; in sljit_emit_enter() 1031 arg_count = 0; in sljit_emit_enter() 1047 arg_count++; in sljit_emit_enter() 1066 arg_count++; in sljit_emit_enter() 1085 } else if (word_arg_count != arg_count + 1 || arg_count == 0) in sljit_emit_enter() 1090 if (arg_count < 4) in sljit_emit_enter() 1096 arg_count++; in sljit_emit_enter() [all …]
|
H A D | sljitNativePPC_common.c | 855 sljit_s32 arg_count = 0; in sljit_emit_enter() local 939 } else if (arg_count != word_arg_count) in sljit_emit_enter() 944 FAIL_IF(push_inst(compiler, OR | S(SLJIT_R0 + arg_count) | A(tmp) | B(SLJIT_R0 + arg_count))); in sljit_emit_enter() 956 arg_count++; in sljit_emit_enter()
|
/php-src/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 369 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 D | zend_builtin_functions.c | 214 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local 238 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION() 240 if ((zend_ulong)requested_offset >= arg_count) { in ZEND_FUNCTION() 261 uint32_t arg_count, first_extra_arg; in ZEND_FUNCTION() local 276 arg_count = ZEND_CALL_NUM_ARGS(ex); in ZEND_FUNCTION() 278 if (arg_count) { in ZEND_FUNCTION() 279 array_init_size(return_value, arg_count); in ZEND_FUNCTION() 285 if (arg_count > first_extra_arg) { in ZEND_FUNCTION() 303 while (i < arg_count) { in ZEND_FUNCTION() 319 Z_ARRVAL_P(return_value)->nNumOfElements = arg_count; in ZEND_FUNCTION()
|
H A D | zend_API.c | 52 uint32_t arg_count; in zend_get_parameters_array_ex() local 55 arg_count = ZEND_CALL_NUM_ARGS(EG(current_execute_data)); in zend_get_parameters_array_ex() 57 if (param_count>arg_count) { in zend_get_parameters_array_ex() 74 uint32_t arg_count; in zend_copy_parameters_array() local 77 arg_count = ZEND_CALL_NUM_ARGS(EG(current_execute_data)); in zend_copy_parameters_array() 79 if (param_count>arg_count) { in zend_copy_parameters_array()
|
H A D | zend_vm_def.h | 5701 uint32_t arg_count = EX_NUM_ARGS(); 5708 if (arg_num <= arg_count) { 5728 } while (++arg_num <= arg_count); in ZEND_HASH_FILL_PACKED() 5734 } while (++arg_num <= arg_count); in ZEND_HASH_FILL_PACKED() 9536 uint32_t arg_count, result_size, skip; variable 9538 arg_count = EX_NUM_ARGS(); 9541 if (arg_count < skip) { 9544 result_size = arg_count - skip; 9548 result_size = arg_count; 9562 if (arg_count > first_extra_arg) { in ZEND_HASH_FILL_PACKED() [all …]
|
H A D | zend_compile.c | 3732 uint32_t arg_count = 0; /* number of arguments not including unpacks */ in zend_compile_args() local 3762 opline->op2.num = arg_count; in zend_compile_args() 3763 opline->result.var = EX_NUM_TO_VAR(arg_count - 1); in zend_compile_args() 3780 if (arg_num == arg_count + 1 && !may_have_undef) { in zend_compile_args() 3783 arg_count++; in zend_compile_args() 3807 arg_count++; in zend_compile_args() 3924 return arg_count; in zend_compile_args() 3981 uint32_t arg_count = zend_compile_args(args_ast, fbc, &may_have_extra_named_args); in zend_compile_call_common() local 3986 opline->extended_value = arg_count; in zend_compile_call_common() 3989 opline->op1.num = zend_vm_calc_used_stack(arg_count, fbc); in zend_compile_call_common()
|
H A D | zend_vm_execute.h | 4196 uint32_t arg_count = EX_NUM_ARGS(); in ZEND_RECV_VARIADIC_SPEC_UNUSED_HANDLER() local 4203 if (arg_num <= arg_count) { in ZEND_RECV_VARIADIC_SPEC_UNUSED_HANDLER() 11413 arg_count = EX_NUM_ARGS(); in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER() 11416 if (arg_count < skip) { in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER() 11419 result_size = arg_count - skip; in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER() 11423 result_size = arg_count; in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER() 11460 while (i < arg_count) { in ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER() 38188 arg_count = EX_NUM_ARGS(); in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER() 38191 if (arg_count < skip) { in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER() 38198 result_size = arg_count; in ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER() [all …]
|
/php-src/ext/ffi/ |
H A D | ffi.c | 915 uint32_t arg_count; member 928 for (int i = 0; i < callback_data->arg_count; ++i) { in zend_ffi_callback_hash_dtor() 953 fci.param_count = callback_data->arg_count; in zend_ffi_callback_trampoline() 972 if (callback_data->arg_count) { in zend_ffi_callback_trampoline() 975 for (n = 0; n < callback_data->arg_count; n++) { in zend_ffi_callback_trampoline() 998 uint32_t arg_count; in zend_ffi_create_callback() local 1030 callback_data->arg_count = arg_count; in zend_ffi_create_callback() 2747 uint32_t n, arg_count; in ZEND_FUNCTION() local 2757 if (arg_count > EX_NUM_ARGS()) { in ZEND_FUNCTION() 2802 if (arg_count != EX_NUM_ARGS()) { in ZEND_FUNCTION() [all …]
|
/php-src/ext/soap/ |
H A D | soap.c | 2280 uint32_t arg_count, in do_soap_call() argument 2389 …request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_ve… in do_soap_call() 2392 …request = serialize_function_call(this_ptr, fn, NULL, sdl->target_ns, real_args, arg_count, soap_v… in do_soap_call() 2549 uint32_t arg_count = zend_hash_num_elements(args); in soap_client_call_common() local 2551 if (arg_count > 0) { in soap_client_call_common() 2555 real_args = safe_emalloc(sizeof(zval), arg_count, 0); in soap_client_call_common() 2564 …do_soap_call(execute_data, this_ptr, function, arg_count, real_args, return_value, location, soap_… in soap_client_call_common() 2566 if (arg_count > 0) { in soap_client_call_common() 4005 for (i = 0;i < arg_count;i++) { in serialize_function_call() 4026 if (n > arg_count) { in serialize_function_call() [all …]
|