Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c205 volatile uint32_t _n_entries; /* number of entires in table */ member
299 return (100 * h->_n_entries) / (h->_n_buckets * _CHT_BUCKET_SLOTS); in cuckoo_hashtable_load_factor()
424 h->_n_entries = 0; in cuckoo_hashtable_create()
452 ASSERT(h->_n_entries == 0); in cuckoo_hashtable_free()
466 return h->_n_entries; in cuckoo_hashtable_entries()
575 OSAddAtomic(1, &h->_n_entries); in __add_to_bucket()
588 OSAddAtomic(1, &h->_n_entries); in __add_to_bucket()
695 OSAddAtomic(1, &h->_n_entries); in cuckoo_move()
745 OSAddAtomic(1, &h->_n_entries); in cuckoo_probe()
775 h->_n_entries, h->_capacity, in cuckoo_probe()
[all …]
/xnu-8019.80.24/tools/lldbmacros/
H A Dskywalk.py775 …ckoo_hashtable *){:18s} capacity {:d} entries {:d}".format(hex(cht), cht._capacity, cht._n_entries)