Lines Matching refs:map_
92 Entry* map_; variable
96 Entry* map_end() const { return map_ + capacity_; } in map_end()
114 P::Delete(map_); in ~TemplateHashMapImpl()
179 q = map_; in Remove()
190 Entry* r = map_ + (q->hash & (capacity_ - 1)); in Remove()
212 for (Entry* p = map_; p < end; p++) { in Clear()
221 return Next(map_ - 1); in Start()
229 ASSERT(map_ - 1 <= p && p < end); in Next()
245 Entry* p = map_ + (hash & (capacity_ - 1)); in Probe()
247 ASSERT(map_ <= p && p < end); in Probe()
253 p = map_; in Probe()
264 map_ = reinterpret_cast<Entry*>(P::New(capacity * sizeof(Entry))); in Initialize()
265 if (map_ == NULL) { in Initialize()
276 Entry* map = map_; in Resize()
309 entry_ = map_->Next(entry_);
319 map_(map), entry_(entry) { } in Iterator()
321 const TemplateHashMapImpl<AllocationPolicy>* map_; variable