| /PHP_TRUNK/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 392 ulong num_index; local 397 args, &str_index, &str_len, &num_index, 0, &pos), 410 if (num_index > (ulong)INT32_MAX) { 417 int32_t len = u_sprintf(temp, "%u", (uint32_t)num_index); 420 zend_hash_index_find(types, (ulong)num_index, (void**)&storedArgType);
|
| /PHP_TRUNK/ext/xmlrpc/ |
| H A D | xmlrpc-epi-php.c | 360 #define my_zend_hash_get_current_key(ht, my_key, num_index) zend_hash_get_current_key(ht, my_key, num_index, 0) 488 unsigned long num_index, last_num = 0; local 493 int res = my_zend_hash_get_current_key(ht, &my_key, &num_index); 499 } else if (last_num > 0 && last_num != num_index-1) { 504 last_num = num_index; 560 unsigned long num_index; local 582 int res = my_zend_hash_get_current_key(Z_ARRVAL_P(val_arr), &my_key, &num_index); 597 spprintf(&num_str, 0, "%ld", num_index);
|
| /PHP_TRUNK/sapi/apache2filter/ |
| H A D | apache_config.c | 128 ulong num_index; local 136 &num_index, 0, NULL) == HASH_KEY_IS_STRING;
|
| /PHP_TRUNK/sapi/apache2handler/ |
| H A D | apache_config.c | 146 ulong num_index; local 158 &num_index, 0, NULL) == HASH_KEY_IS_STRING;
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 598 ulong num_index; local 613 while ((key_type = zend_hash_get_current_key_ex(req->env, &str_index, &str_length, &num_index, 0, &pos)) != HASH_KEY_NON_EXISTANT) {
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 450 ulong num_index; local 463 ¶m.name, &str_length, &num_index, 0, NULL)) { 469 if (num_index < 0) { 473 param.paramno = num_index;
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_encoding.c | 3607 ulong num_index; local 3609 if (zend_hash_get_current_key(Z_ARRVAL_P(array), &str_index, &num_index, 0) == HASH_KEY_IS_STRING || 3610 num_index != i) {
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_fixedarray.c | 706 ulong num_index, max_index = 0; local 713 if (zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0) != HASH_KEY_IS_LONG || (long)num_index < 0) { 719 if (num_index > max_index) { 720 max_index = num_index; 737 zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0); local 741 array->elements[num_index] = value;
|
| /PHP_TRUNK/main/ |
| H A D | php_ini.c | 773 ulong num_index; local 777 zend_hash_get_current_key_ex(source_hash, &str, &str_len, &num_index, 0, NULL) == HASH_KEY_IS_STRING;
|
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 2414 ulong num_index; local 2566 if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(str), &str_index, &str_index_len, &num_index, 0, &pos_str) == HASH_KEY_IS_STRING) { 2569 add_index_stringl(return_value, num_index, result, result_len, 0);
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 439 ulong num_index; local 444 zend_hash_get_current_key_ex(&ce->constants_table, &key, &key_len, &num_index, 0, &pos); 609 ulong num_index; local 615 || zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_KEY_IS_STRING 791 ulong num_index; local 813 zend_hash_get_current_key_ex(static_variables, &key, &key_len, &num_index, 0, &pos); 3356 ulong num_index; local 3360 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_execute_API.c | 567 ulong num_index; local 592 if (zend_hash_get_current_key_ex(Z_ARRVAL_P(p), &str_index, &str_index_len, &num_index, 0, NULL) != HASH_KEY_IS_STRING) {
|
| H A D | zend_hash.c | 1147 ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos) argument 1167 *num_index = p->h; 1231 ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos) argument 1246 if (!p->nKeyLength && p->h == num_index) { 1250 q = ht->arBuckets[num_index & ht->nTableMask]; 1252 if (!q->nKeyLength && q->h == num_index) { 1417 p->h = num_index;
|
| H A D | zend_builtin_functions.c | 911 ulong num_index; local 915 zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos); 991 ulong num_index; local 1015 if (zend_hash_get_current_key_ex(properties, &key, &key_len, &num_index, 0, &pos) == HASH_KEY_IS_STRING) { 1078 ulong num_index; local 1082 if (zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_KEY_IS_STRING) {
|
| H A D | zend_vm_def.h | 3624 ZEND_VM_C_GOTO(num_index); variable 3628 ZEND_VM_C_LABEL(num_index): 3635 ZEND_HANDLE_NUMERIC_EX(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, hval, ZEND_VM_C_GOTO(num_index));
|