| /PHP_5_5/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 366 int arg_count = zend_hash_num_elements(args); local 381 fargs.resize(arg_count); 382 farg_names.resize(arg_count); 616 fargs.empty() ? NULL : &fargs[0], arg_count, resultStr, err.code);
|
| /PHP_5_5/Zend/ |
| H A D | zend_execute.h | 320 int arg_count = (int)(zend_uintptr_t) *p; local 322 if (UNEXPECTED(requested_arg > arg_count)) { 325 return (zval**)p - arg_count + requested_arg - 1;
|
| H A D | zend_API.c | 48 int arg_count; local 54 arg_count = (int)(zend_uintptr_t) *p; 56 if (param_count>arg_count) { 64 param_ptr = *(p-arg_count); 73 Z_DELREF_P((zval *) *(p-arg_count)); 74 *(p-arg_count) = param_ptr; 77 arg_count--; 88 int arg_count; local 92 arg_count = (int)(zend_uintptr_t) *p; 94 if (param_count>arg_count) { 124 int arg_count; local 150 int arg_count; local 173 int arg_count; local 737 int arg_count; local [all...] |
| H A D | zend_vm_def.h | 1973 ulong arg_count = opline->extended_value; local 1975 while (arg_count>0) { 1976 zend_verify_arg_type(fbc, ++i, *(p-arg_count), 0 TSRMLS_CC); 1977 arg_count--;
|
| H A D | zend_vm_execute.h | 525 ulong arg_count = opline->extended_value; local 527 while (arg_count>0) { 528 zend_verify_arg_type(fbc, ++i, *(p-arg_count), 0 TSRMLS_CC); 529 arg_count--; [all...] |
| H A D | zend_builtin_functions.c | 410 int arg_count; local 430 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passed to func_get_arg(); */ 432 if (requested_offset >= arg_count) { 437 arg = *(p-(arg_count-requested_offset)); 450 int arg_count; local 460 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passed to func_get_args(); */ 462 array_init_size(return_value, arg_count); 463 for (i=0; i<arg_count; i++) { 467 *element = **((zval **) (p-(arg_count-i))); 2018 int arg_count local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.h | 257 int arg_count; member in struct:_php_shutdown_function_entry
|
| H A D | basic_functions.c | 123 int arg_count; member in struct:_user_tick_function_entry 4961 for (i = 0; i < shutdown_function_entry->arg_count; i++) { 4972 for (i = 0; i < tick_function_entry->arg_count; i++) { 4998 shutdown_function_entry->arg_count - 1, 5020 tick_fe->arg_count - 1, 5118 shutdown_function_entry.arg_count = ZEND_NUM_ARGS(); 5120 if (shutdown_function_entry.arg_count < 1) { 5124 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), shutdown_function_entry.arg_count, 0); 5126 if (zend_get_parameters_array(ht, shutdown_function_entry.arg_count, shutdown_function_entry.arguments) == FAILURE) { 5142 for (i = 0; i < shutdown_function_entry.arg_count; [all...] |
| /PHP_5_5/sapi/apache2filter/ |
| H A D | php_functions.c | 229 int arg_count = ZEND_NUM_ARGS(); local 231 if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &string_val_len, &walk_to_top) == FAILURE) { 237 if (arg_count == 3 && walk_to_top) { 257 int arg_count = ZEND_NUM_ARGS(); local 260 if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { 266 if (arg_count == 2 && walk_to_top) {
|
| /PHP_5_5/sapi/apache2handler/ |
| H A D | php_functions.c | 259 int arg_count = ZEND_NUM_ARGS(); local 262 if (zend_parse_parameters(arg_count TSRMLS_CC, "ss|b", &variable, &variable_len, &string_val, &string_val_len, &walk_to_top) == FAILURE) { 269 if (arg_count == 3) { 294 int arg_count = ZEND_NUM_ARGS(); local 298 if (zend_parse_parameters(arg_count TSRMLS_CC, "s|b", &variable, &variable_len, &walk_to_top) == FAILURE) { 305 if (arg_count == 2) {
|
| /PHP_5_5/ext/session/ |
| H A D | session.c | 1638 shutdown_function_entry.arg_count = 1; 1944 shutdown_function_entry.arg_count = 1;
|
| /PHP_5_5/ext/spl/ |
| H A D | spl_iterators.c | 1277 int arg_count; local 1292 arg_count = (ulong) *p; 1294 func_params = safe_emalloc(sizeof(zval **), arg_count, 0); 1297 while (arg_count-- > 0) { 1298 func_params[current] = (zval **) p - (arg_count-current); 1301 arg_count = current; /* restore */ 1303 if (call_user_function_ex(EG(function_table), NULL, &func, &retval_ptr, arg_count, func_params, 0, NULL TSRMLS_CC) == SUCCESS && retval_ptr) {
|
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 63 static xmlDocPtr serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC); 2616 int arg_count, 2714 request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 2717 request = serialize_function_call(this_ptr, fn, NULL, sdl->target_ns, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 2752 request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 2846 int arg_count; local 2915 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args)); 2917 if (arg_count > 0) { 2918 real_args = safe_emalloc(sizeof(zval *), arg_count, 0); 2929 do_soap_call(this_ptr, function, function_len, arg_count, real_arg 2613 do_soap_call(zval* this_ptr, char* function, int function_len, int arg_count, zval** real_args, zval* return_value, char* location, char* soap_action, char* call_uri, HashTable* soap_headers, zval* output_headers TSRMLS_DC) argument 4129 serialize_function_call(zval *this_ptr, sdlFunctionPtr function, char *function_name, char *uri, zval **arguments, int arg_count, int version, HashTable *soap_headers TSRMLS_DC) argument [all...] |