Home
last modified time | relevance | path

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

/xnu-10002.1.13/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c197 struct _slot _slots[_CHT_BUCKET_SLOTS]; member
276 return &b->_slots[slot_idx]; in __bucket_slot()
489 if (b->_slots[i]._hash == hash) { in __find_in_bucket()
490 node = b->_slots[i]._node; in __find_in_bucket()
577 b->_slots[avail_i]._hash = hash; in __add_to_bucket()
578 b->_slots[avail_i]._node = node; in __add_to_bucket()
643 alt_bkt = __alt_bucket(h, from_bkt->_slots[from_slot]._hash); in cuckoo_move()
659 ASSERT(to_bkt->_slots[to_slot]._node == NULL); in cuckoo_move()
660 ASSERT(to_bkt->_slots[to_slot]._hash == 0); in cuckoo_move()
663 to_bkt->_slots[to_slot] = from_bkt->_slots[from_slot]; in cuckoo_move()
[all …]
/xnu-10002.1.13/tools/lldbmacros/
H A Dskywalk.py751 s = b._slots[j]