Home
last modified time | relevance | path

Searched refs:Bucket (Results 1 – 25 of 28) sorted by relevance

12

/PHP-7.1/Zend/
H A Dzend_hash.c544 Bucket *p; in _zend_hash_add_or_update_i()
707 Bucket *p; in _zend_hash_index_add_or_update_i()
875 Bucket *p; in zend_hash_rehash()
1035 Bucket *p; in zend_hash_del()
1066 Bucket *p; in zend_hash_del_ind()
1115 Bucket *p; in zend_hash_str_del_ind()
1159 Bucket *p; in zend_hash_str_del()
1188 Bucket *p; in zend_hash_index_del()
1445 Bucket *p; in zend_hash_graceful_destroy()
1465 Bucket *p; in zend_hash_graceful_reverse_destroy()
[all …]
H A Dzend_string.c135 Bucket *p; in zend_new_interned_string_int()
162 Bucket *old_buckets = CG(interned_strings).arData; in zend_new_interned_string_int()
170 … memcpy(CG(interned_strings).arData, old_buckets, sizeof(Bucket) * CG(interned_strings).nNumUsed); in zend_new_interned_string_int()
201 Bucket *p; in zend_interned_strings_snapshot_int()
218 Bucket *p; in zend_interned_strings_restore_int()
H A Dzend_hash.h158 ZEND_API void ZEND_FASTCALL zend_hash_del_bucket(HashTable *ht, Bucket *p);
225 ZEND_API void zend_hash_bucket_swap(Bucket *p, Bucket *q);
226 ZEND_API void zend_hash_bucket_renum_swap(Bucket *p, Bucket *q);
227 ZEND_API void zend_hash_bucket_packed_swap(Bucket *p, Bucket *q);
798 Bucket *_p = (_ht)->arData; \
799 Bucket *_end = _p + (_ht)->nNumUsed; \
810 Bucket *_p = (_ht)->arData + _idx - 1; \
938 Bucket *__fill_bkt = __fill_ht->arData + __fill_ht->nNumUsed; \
961 Bucket *p = ht->arData + idx; in _zend_hash_append()
983 Bucket *p = ht->arData + idx; in _zend_hash_append_ptr()
[all …]
H A Dzend_types.h174 } Bucket; typedef
191 Bucket *arData;
223 ((Bucket*)((char*)(data) + (idx)))
225 ((idx) * sizeof(Bucket))
227 ((idx) / sizeof(Bucket))
248 ((size_t)(nTableSize) * sizeof(Bucket))
254 (HT_HASH_SIZE((ht)->nTableMask) + ((size_t)(ht)->nNumUsed * sizeof(Bucket)))
265 (ht)->arData = (Bucket*)(((char*)(ptr)) + HT_HASH_SIZE((ht)->nTableMask)); \
H A Dzend_ini.c185 const Bucket *f; in ini_key_compare()
186 const Bucket *s; in ini_key_compare()
188 f = (const Bucket *) a; in ini_key_compare()
189 s = (const Bucket *) b; in ini_key_compare()
H A Dzend_gc.c371 Bucket *p, *end; in gc_scan_black()
479 Bucket *p, *end; in gc_mark_grey()
607 Bucket *p, *end; in gc_scan()
765 Bucket *p, *end;
950 Bucket *p, *end;
H A Dzend_API.c1864 Bucket *b1 = base; in zend_sort_modules()
1865 Bucket *b2; in zend_sort_modules()
1866 Bucket *end = b1 + count; in zend_sort_modules()
1867 Bucket tmp; in zend_sort_modules()
/PHP-7.1/ext/standard/
H A Darray.c144 Bucket *f = (Bucket *) a; in php_array_key_compare()
145 Bucket *s = (Bucket *) b; in php_array_key_compare()
191 Bucket *f = (Bucket *) a; in php_array_key_compare_numeric()
192 Bucket *s = (Bucket *) b; in php_array_key_compare_numeric()
221 Bucket *f = (Bucket *) a; in php_array_key_compare_string_case()
222 Bucket *s = (Bucket *) b; in php_array_key_compare_string_case()
254 Bucket *f = (Bucket *) a; in php_array_key_compare_string()
255 Bucket *s = (Bucket *) b; in php_array_key_compare_string()
287 Bucket *f = (Bucket *) a; in php_array_key_compare_string_natural_general()
288 Bucket *s = (Bucket *) b; in php_array_key_compare_string_natural_general()
[all …]
H A Dinfo.c814 Bucket *f = (Bucket *) a; in module_name_cmp()
815 Bucket *s = (Bucket *) b; in module_name_cmp()
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_watch.h68 Bucket *bucket;
78 Bucket bucket;
111 Bucket *last;
H A Dphpdbg_watch.c135 …if (memcmp(&((Bucket *) oldPtr)->h, &((Bucket *) newPtr)->h, sizeof(Bucket) - sizeof(zval) /* key/… in phpdbg_check_watch_diff()
307 void phpdbg_set_bucket_watchpoint(Bucket *bucket, phpdbg_watchpoint_t *watch) {
308 phpdbg_set_addr_watchpoint(bucket, sizeof(Bucket), watch);
481 phpdbg_watch_element *phpdbg_add_bucket_watch_element(Bucket *bucket, phpdbg_watch_element *element…
536 phpdbg_add_bucket_watch_element((Bucket *) zv, child);
700 phpdbg_add_bucket_watch_element((Bucket *) zv, element);
1188 phpdbg_add_bucket_watch_element((Bucket *) zv, element);
1208 phpdbg_add_bucket_watch_element((Bucket *) orig_zv, element);
1221 phpdbg_add_bucket_watch_element((Bucket *) zv, element);
1282 element = phpdbg_add_bucket_watch_element((Bucket *) zv, element);
[all …]
H A Dphpdbg_wait.c52 Bucket *f, *s; in phpdbg_array_data_compare()
56 f = *((Bucket **) a); in phpdbg_array_data_compare()
57 s = *((Bucket **) b); in phpdbg_array_data_compare()
/PHP-7.1/ext/intl/collator/
H A Dcollator_sort.c215 Bucket *f; in collator_compare_func()
216 Bucket *s; in collator_compare_func()
221 f = (Bucket *) a; in collator_compare_func()
222 s = (Bucket *) b; in collator_compare_func()
/PHP-7.1/ext/opcache/
H A Dzend_persist.c87 Bucket *p; in zend_hash_persist()
117 Bucket *old_buckets = ht->arData; in zend_hash_persist()
131 …r*)ZCG(mem) + ZEND_ALIGNED_SIZE((hash_size * sizeof(uint32_t)) + (ht->nNumUsed * sizeof(Bucket)))); in zend_hash_persist()
133 memcpy(ht->arData, old_buckets, ht->nNumUsed * sizeof(Bucket)); in zend_hash_persist()
181 Bucket *p; in zend_hash_persist_immutable()
209 Bucket *old_buckets = ht->arData; in zend_hash_persist_immutable()
223 …mem) = (void*)((char*)ZCG(mem) + (hash_size * sizeof(uint32_t)) + (ht->nNumUsed * sizeof(Bucket))); in zend_hash_persist_immutable()
225 memcpy(ht->arData, old_buckets, ht->nNumUsed * sizeof(Bucket)); in zend_hash_persist_immutable()
H A Dzend_accelerator_util_funcs.c120 Bucket *p; in zend_accel_move_user_functions()
174 Bucket *p, *q, *end; in zend_hash_clone_constants()
225 Bucket *p, *q, *end; in zend_hash_clone_methods()
283 Bucket *p, *q, *end; in zend_hash_clone_prop_info()
476 Bucket *p, *end; in zend_accel_function_hash_copy()
520 Bucket *p, *end; in zend_accel_function_hash_copy_from_shm()
563 Bucket *p, *end; in zend_accel_class_hash_copy()
H A Dzend_persist_calc.c57 Bucket *p; in zend_hash_persist_calc()
75 ADD_SIZE(hash_size * sizeof(uint32_t) + ht->nNumUsed * sizeof(Bucket)); in zend_hash_persist_calc()
H A DZendAccelerator.c373 Bucket *p; in accel_interned_strings_restore_state()
411 Bucket *arData, *p; in accel_find_interned_string()
451 Bucket *p; in accel_new_interned_string()
521 Bucket *p, *q; in accel_use_shm_interned_strings()
2098 Bucket *p; in accel_reset_pcre_cache()
2284 Bucket *p = ht->arData; in accel_fast_hash_destroy()
2285 Bucket *end = p + ht->nNumUsed; in accel_fast_hash_destroy()
2295 static inline void zend_accel_fast_del_bucket(HashTable *ht, uint32_t idx, Bucket *p) in zend_accel_fast_del_bucket()
2302 Bucket *prev = HT_HASH_TO_BUCKET(ht, i); in zend_accel_fast_del_bucket()
H A Dzend_file_cache.c261 Bucket *p, *end; in zend_file_cache_serialize_hash()
896 Bucket *p, *end; in zend_file_cache_unserialize_hash()
/PHP-7.1/ext/phar/
H A Ddirstream.c157 Bucket *f; in phar_compare_dir_name()
158 Bucket *s; in phar_compare_dir_name()
161 f = (Bucket *) a; in phar_compare_dir_name()
162 s = (Bucket *) b; in phar_compare_dir_name()
H A Dstream.c900 Bucket *b; in phar_wrapper_rename()
/PHP-7.1/sapi/cli/
H A Dphp_cli.c196 Bucket *f = (Bucket *) a; in module_name_cmp()
197 Bucket *s = (Bucket *) b; in module_name_cmp()
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c232 Bucket *f = (Bucket *) a; in module_name_cmp()
233 Bucket *s = (Bucket *) b; in module_name_cmp()
/PHP-7.1/sapi/cgi/
H A Dcgi_main.c254 Bucket *f = (Bucket *) a; in module_name_cmp()
255 Bucket *s = (Bucket *) b; in module_name_cmp()
/PHP-7.1/ext/spl/
H A Dphp_spl.c443 Bucket tmp = (ht)->arData[(ht)->nNumUsed-1]; \
445 sizeof(Bucket) * ((ht)->nNumUsed - 1)); \
/PHP-7.1/
H A D.gdbinit335 set $p = (Bucket*)($ht->arData + $i)

Completed in 216 milliseconds

12