Lines Matching refs:tmp_h
878 struct cuckoo_hashtable *tmp_h; in cuckoo_resize() local
879 tmp_h = cuckoo_hashtable_create(&new_p); in cuckoo_resize()
880 if (tmp_h == NULL) { in cuckoo_resize()
888 error = cuckoo_hashtable_add_with_hash(tmp_h, node, hash); in cuckoo_resize()
894 cuckoo_hashtable_entries(tmp_h))) { in cuckoo_resize()
897 cuckoo_hashtable_entries(tmp_h)); in cuckoo_resize()
903 h->_n_buckets = tmp_h->_n_buckets; in cuckoo_resize()
905 h->_bitmask = tmp_h->_bitmask; in cuckoo_resize()
908 h->_buckets = tmp_h->_buckets; in cuckoo_resize()
909 lck_rw_destroy(&tmp_h->_resize_lock, &cht_lock_group); in cuckoo_resize()
910 lck_mtx_destroy(&tmp_h->_lock, &cht_lock_group); in cuckoo_resize()
911 sk_free_type(struct cuckoo_hashtable, tmp_h); in cuckoo_resize()