Home
last modified time | relevance | path

Searched refs:_buckets (Results 1 – 2 of 2) sorted by relevance

/xnu-8792.41.9/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c215 struct _bucket *_buckets; member
250 return &h->_buckets[b_i]; in __get_bucket()
269 return ((uintptr_t)b - (uintptr_t)&h->_buckets[0]) / sizeof(struct _bucket); in __bucket_idx()
422 h->_buckets = buckets; in cuckoo_hashtable_create()
448 if (h->_buckets != NULL) { in cuckoo_hashtable_free()
450 lck_mtx_destroy(&h->_buckets[i]._lock, &cht_lock_group); in cuckoo_hashtable_free()
452 sk_free_type_array(struct _bucket, h->_n_buckets, h->_buckets); in cuckoo_hashtable_free()
656 from_bkt - h->_buckets, from_slot, to_bkt - h->_buckets, in cuckoo_move()
790 struct _bucket *b = &h->_buckets[i];
901 lck_mtx_destroy(&h->_buckets[i]._lock, &cht_lock_group); in cuckoo_resize()
[all …]
/xnu-8792.41.9/tools/lldbmacros/
H A Dskywalk.py750 b = cht._buckets[i]