Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c196 struct _slot _slots[_CHT_BUCKET_SLOTS]; member
273 return &b->_slots[slot_idx]; in __bucket_slot()
495 if (b->_slots[i]._hash == hash) { in __find_in_bucket()
496 node = b->_slots[i]._node; in __find_in_bucket()
583 b->_slots[avail_i]._hash = hash; in __add_to_bucket()
584 b->_slots[avail_i]._node = node; in __add_to_bucket()
649 alt_bkt = __alt_bucket(h, from_bkt->_slots[from_slot]._hash); in cuckoo_move()
665 ASSERT(to_bkt->_slots[to_slot]._node == NULL); in cuckoo_move()
666 ASSERT(to_bkt->_slots[to_slot]._hash == 0); in cuckoo_move()
669 to_bkt->_slots[to_slot] = from_bkt->_slots[from_slot]; in cuckoo_move()
[all …]
/xnu-8019.80.24/tools/lldbmacros/
H A Dskywalk.py750 s = b._slots[j]