| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 58 U_CFUNC void umsg_format_helper(UMessageFormat *fmt, int arg_count, zval **args, UChar **formatted, int *formatted_len, UErrorCode *status TSRMLS_DC) argument
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_iterators.c | 1302 int arg_count; local 1317 arg_count = (ulong) *p; 1319 func_params = safe_emalloc(sizeof(zval **), arg_count, 0); 1322 while (arg_count-- > 0) { 1323 func_params[current] = (zval **) p - (arg_count-current); 1326 arg_count = current; /* restore */ 1328 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_3/ext/standard/ |
| H A D | basic_functions.c | 124 int arg_count; member in struct:_php_shutdown_function_entry 129 int arg_count; member in struct:_user_tick_function_entry 4970 for (i = 0; i < shutdown_function_entry->arg_count; i++) { 4981 for (i = 0; i < tick_function_entry->arg_count; i++) { 5007 shutdown_function_entry->arg_count - 1, 5029 tick_fe->arg_count - 1, 5127 shutdown_function_entry.arg_count = ZEND_NUM_ARGS(); 5129 if (shutdown_function_entry.arg_count < 1) { 5133 shutdown_function_entry.arguments = (zval **) safe_emalloc(sizeof(zval *), shutdown_function_entry.arg_count, 0); 5135 if (zend_get_parameters_array(ht, shutdown_function_entry.arg_count, shutdown_function_entr [all...] |
| /PHP_5_3/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_3/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_3/Zend/ |
| H A D | zend_API.c | 42 int arg_count; local 48 arg_count = (int)(zend_uintptr_t) *p; 50 if (param_count>arg_count) { 58 param_ptr = *(p-arg_count); 67 Z_DELREF_P((zval *) *(p-arg_count)); 68 *(p-arg_count) = param_ptr; 71 arg_count--; 82 int arg_count; local 86 arg_count = (int)(zend_uintptr_t) *p; 88 if (param_count>arg_count) { 118 int arg_count; local 144 int arg_count; local 167 int arg_count; local 682 int arg_count = (int)(zend_uintptr_t) *(zend_vm_stack_top(TSRMLS_C) - 1); local [all...] |
| H A D | zend_execute.h | 326 int arg_count = (int)(zend_uintptr_t) *p; local 328 if (UNEXPECTED(requested_arg > arg_count)) { 331 return (zval**)p - arg_count + requested_arg - 1;
|
| H A D | zend_builtin_functions.c | 386 int arg_count; local 406 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passed to func_get_arg(); */ 408 if (requested_offset >= arg_count) { 413 arg = *(p-(arg_count-requested_offset)); 426 int arg_count; local 436 arg_count = (int)(zend_uintptr_t) *p; /* this is the amount of arguments passed to func_get_args(); */ 438 array_init_size(return_value, arg_count); 439 for (i=0; i<arg_count; i++) { 443 *element = **((zval **) (p-(arg_count-i))); 1907 int arg_count local [all...] |
| H A D | zend_vm_def.h | 2307 ulong arg_count = opline->extended_value; local 2309 while (arg_count>0) { 2310 zend_verify_arg_type(EX(function_state).function, ++i, *(p-arg_count), 0 TSRMLS_CC); 2311 arg_count--;
|
| H A D | zend_vm_execute.h | 307 ulong arg_count = opline->extended_value; local 309 while (arg_count>0) { 310 zend_verify_arg_type(EX(function_state).function, ++i, *(p-arg_count), 0 TSRMLS_CC); 311 arg_count--; [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | soap.c | 64 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); 2799 int arg_count, 2897 request = serialize_function_call(this_ptr, fn, NULL, fnb->input.ns, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 2900 request = serialize_function_call(this_ptr, fn, NULL, sdl->target_ns, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 2935 request = serialize_function_call(this_ptr, NULL, function, call_uri, real_args, arg_count, soap_version, soap_headers TSRMLS_CC); 3029 int arg_count; local 3098 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args)); 3100 if (arg_count > 0) { 3101 real_args = safe_emalloc(sizeof(zval *), arg_count, 0); 3112 do_soap_call(this_ptr, function, function_len, arg_count, real_arg 2796 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 3413 int arg_count = ZEND_NUM_ARGS(); local 4351 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...] |