Lines Matching refs:map_
88 Entry* map_; variable
92 Entry* map_end() const { return map_ + capacity_; } in map_end()
110 AllocationPolicy::Delete(map_); in ~TemplateHashMapImpl()
181 q = map_; in Remove()
192 Entry* r = map_ + (q->hash & (capacity_ - 1)); in Remove()
215 for (Entry* p = map_; p < end; p++) { in Clear()
225 return Next(map_ - 1); in Start()
233 DCHECK(map_ - 1 <= p && p < end); in Next()
249 Entry* p = map_ + (hash & (capacity_ - 1)); in Probe()
251 DCHECK(map_ <= p && p < end); in Probe()
257 p = map_; in Probe()
269 map_ = reinterpret_cast<Entry*>(allocator.New(capacity * sizeof(Entry))); in Initialize()
270 if (map_ == NULL) { in Initialize()
281 Entry* map = map_; in Resize()
316 entry_ = map_->Next(entry_);
326 map_(map), entry_(entry) { } in Iterator()
328 const TemplateHashMapImpl<AllocationPolicy>* map_; variable