Home | History | Annotate | Download | only in src

Lines Matching refs:bucket_table_

105 static const int kHashTableSize = 179999;   // Size for bucket_table_.
135 bucket_table_(NULL),
140 const int table_bytes = kHashTableSize * sizeof(*bucket_table_);
141 bucket_table_ = static_cast<Bucket**>(alloc_(table_bytes));
142 memset(bucket_table_, 0, table_bytes);
161 for (Bucket* curr = bucket_table_[i]; curr != 0; /**/) {
168 dealloc_(bucket_table_);
169 bucket_table_ = NULL;
186 for (Bucket* b = bucket_table_[buck]; b != 0; b = b->next) {
203 b->next = bucket_table_[buck];
204 bucket_table_[buck] = b;
341 for (Bucket* curr = bucket_table_[i]; curr != 0; curr = curr->next) {