Lines Matching refs:buckets
89 HASH_FIND_IN_BKT((head)->hh.tbl, hh, (head)->hh.tbl->buckets[ _hf_bkt ], \
138 (head)->hh.tbl->buckets = (UT_hash_bucket*)uthash_malloc( \
140 if (! (head)->hh.tbl->buckets) { uthash_fatal( "out of memory"); } \
141 memset((head)->hh.tbl->buckets, 0, \
169 HASH_ADD_TO_BKT((head)->hh.tbl->buckets[_ha_bkt],&(add)->hh); \
197 uthash_free((head)->hh.tbl->buckets, \
221 HASH_DEL_IN_BKT(hh,(head)->hh.tbl->buckets[_hd_bkt], _hd_hh_del); \
259 _thh = (head)->hh.tbl->buckets[_bkt_i].hh_head; \
271 if ((head)->hh.tbl->buckets[_bkt_i].count != _bkt_count) { \
273 (head)->hh.tbl->buckets[_bkt_i].count, _bkt_count); \
722 _he_thh = tbl->buckets[ _he_bkt_i ].hh_head; \
740 uthash_free( tbl->buckets, tbl->num_buckets*sizeof(struct UT_hash_bucket) ); \
743 tbl->buckets = _he_new_buckets; \
850 for(_src_hh = (src)->hh_src.tbl->buckets[_src_bkt].hh_head; \
869 HASH_ADD_TO_BKT(_dst_hh->tbl->buckets[_dst_bkt],_dst_hh); \
883 uthash_free((head)->hh.tbl->buckets, \
929 UT_hash_bucket *buckets; member