Home | History | Annotate | Download | only in blockfile

Lines Matching refs:mask_

467       int extra_size = (header()->max_bucket - mask_) * kCellsPerBucket;
499 mask_ = ((kBaseTableLen / kCellsPerBucket) << extra_bits_) - 1;
512 int old_main_table_bit_words = ((mask_ >> 1) + 1) * kCellsPerBucket / 32;
579 int bucket_num = static_cast<int>(hash & mask_);
597 HandleMisplacedCell(current_cell, cell_num, hash & mask_);
608 bucket_num = GetNextBucket(mask_ + 1, header()->max_bucket, extra_table_,
618 int bucket_num = static_cast<int>(hash & mask_);
633 bucket_num = GetNextBucket(mask_ + 1, header()->max_bucket, extra_table_,
642 bucket = &extra_table_[bucket_num - (mask_ + 1)];
643 bucket->hash = hash & mask_;
797 int bucket_num = static_cast<int>(hash & mask_);
818 bucket_num = GetNextBucket(mask_ + 1, header()->max_bucket, extra_table_,
850 if (bucket_num < static_cast<int32>(mask_ + 1)) {
854 bucket = &extra_table_[bucket_num - (mask_ + 1)];
891 for (int i = 0; i < static_cast<int32>(mask_ + 1); i++) {
897 bucket_num = GetNextBucket(mask_ + 1, header()->max_bucket, extra_table_,
951 int max_hash = (mask_ + 1) / 2;
953 header()->max_bucket = mask_;
1077 CheckBucketList(hash & mask_);
1106 bucket_num = GetNextBucket(mask_ + 1, header()->max_bucket, extra_table_,