Home
last modified time | relevance | path

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

/xnu-8792.41.9/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c206 volatile uint32_t _n_entries; /* number of entires in table */ member
302 return (100 * h->_n_entries) / (h->_n_buckets * _CHT_BUCKET_SLOTS); in cuckoo_hashtable_load_factor()
418 h->_n_entries = 0; in cuckoo_hashtable_create()
446 ASSERT(h->_n_entries == 0); in cuckoo_hashtable_free()
460 return h->_n_entries; in cuckoo_hashtable_entries()
569 OSAddAtomic(1, &h->_n_entries); in __add_to_bucket()
582 OSAddAtomic(1, &h->_n_entries); in __add_to_bucket()
689 OSAddAtomic(1, &h->_n_entries); in cuckoo_move()
739 OSAddAtomic(1, &h->_n_entries); in cuckoo_probe()
769 h->_n_entries, h->_capacity, in cuckoo_probe()
[all …]
/xnu-8792.41.9/tools/lldbmacros/
H A Dskywalk.py779 …koo_hashtable *){:18s} capacity {:d} entries {:d}".format(hex(cht), cht._capacity, cht._n_entries))