Lines Matching defs:bucket
117 struct hash_entry *next; /* next entry in the bucket */
686 * bucket number.
691 * it is moved to the beginning of the linked list in its bucket (this
694 * end of the list) in each bucket.
698 * in each bucket). The major disadvantage is that you may be throwing
732 int bucket;
738 bucket = key % client_list->tbl_len;
739 entry = client_list->table[bucket];
750 entry->next = client_list->table[bucket];
751 client_list->table[bucket] = entry;
770 * last entry in each bucket and updates the counters. Returns the
815 int bucket;
823 bucket = key % client_list->tbl_len;
851 entry->next = client_list->table[bucket];
852 client_list->table[bucket] = entry;