Home | History | Annotate | Download | only in gtl

Lines Matching refs:b_

117     iterator() : b_(nullptr), end_(nullptr), i_(0) {}
120 iterator(Bucket* b, Bucket* end) : b_(b), end_(end), i_(0) { SkipUnused(); }
123 iterator(Bucket* b, Bucket* end, uint32 i) : b_(b), end_(end), i_(i) {
130 return b_ == x.b_ && i_ == x.i_;
134 DCHECK(b_ != end_);
147 Bucket* b_;
153 void FillValue() { new (space_) value_type(b_->key(i_), b_->val(i_)); }
155 while (b_ < end_) {
158 b_++;
159 } else if (b_->marker[i_] < 2) {
257 rep_.Erase(pos.b_, pos.i_);
263 rep_.Erase(pos.b_, pos.i_);