Home | History | Annotate | Download | only in program

Lines Matching full:bucket

115     const unsigned bucket = hash_value % ht->num_buckets;
118 foreach(node, & ht->buckets[bucket]) {
141 const unsigned bucket = hash_value % ht->num_buckets;
149 insert_at_head(& ht->buckets[bucket], & node->link);
156 const unsigned bucket = hash_value % ht->num_buckets;
160 foreach(node, & ht->buckets[bucket]) {
174 insert_at_head(& ht->buckets[bucket], & hn->link);
196 int bucket;
198 for (bucket = 0; bucket < ht->num_buckets; bucket++) {
200 foreach_s(node, temp, &ht->buckets[bucket]) {