Lines Matching refs:map_
59 allocator_->Delete(map_); in ~HashMap()
122 q = map_; in Remove()
133 Entry* r = map_ + (q->hash & (capacity_ - 1)); in Remove()
154 for (Entry* p = map_; p < end; p++) { in Clear()
162 return Next(map_ - 1); in Start()
168 ASSERT(map_ - 1 <= p && p < end); in Next()
182 Entry* p = map_ + (hash & (capacity_ - 1)); in Probe()
184 ASSERT(map_ <= p && p < end); in Probe()
190 p = map_; in Probe()
200 map_ = reinterpret_cast<Entry*>(allocator_->New(capacity * sizeof(Entry))); in Initialize()
201 if (map_ == NULL) { in Initialize()
211 Entry* map = map_; in Resize()