Home
last modified time | relevance | path

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

/xnu-11215.61.5/bsd/skywalk/lib/
H A Dcuckoo_hashtable.c877 struct cuckoo_hashtable *tmp_h; in cuckoo_resize() local
878 tmp_h = cuckoo_hashtable_create(&new_p); in cuckoo_resize()
879 if (tmp_h == NULL) { in cuckoo_resize()
887 error = cuckoo_hashtable_add_with_hash(tmp_h, node, hash); in cuckoo_resize()
893 cuckoo_hashtable_entries(tmp_h))) { in cuckoo_resize()
896 cuckoo_hashtable_entries(tmp_h)); in cuckoo_resize()
902 h->_capacity = tmp_h->_n_buckets * _CHT_BUCKET_SLOTS; in cuckoo_resize()
903 h->_bitmask = tmp_h->_bitmask; in cuckoo_resize()
906 h->_buckets = tmp_h->_buckets; in cuckoo_resize()
907 h->_n_buckets = tmp_h->_n_buckets; in cuckoo_resize()
[all …]