Lines Matching refs:not_mapped
53 Object* not_mapped = heap_->not_mapped_symbol(); in ScanKeysFor() local
56 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
60 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
66 Object* not_mapped = heap_->not_mapped_symbol(); in InsertKey() local
73 if (keys_[index] == not_mapped) { // Free entry. in InsertKey()
87 Object* not_mapped = heap_->not_mapped_symbol(); in DeleteIndex() local
88 DCHECK_NE(keys_[index], not_mapped); in DeleteIndex()
89 keys_[index] = not_mapped; in DeleteIndex()
104 if (key == not_mapped) break; in DeleteIndex()
113 DCHECK_EQ(not_mapped, keys_[index]); in DeleteIndex()
166 Object* not_mapped = heap_->not_mapped_symbol(); in GetEntry() local
167 for (int i = 0; i < capacity_; i++) keys_[i] = not_mapped; in GetEntry()
214 Object* not_mapped = heap_->not_mapped_symbol(); in NextIndex() local
216 if (keys_[index] != not_mapped) { in NextIndex()
232 Object* not_mapped = heap_->not_mapped_symbol(); in Rehash() local
234 if (keys_[i] == not_mapped) { in Rehash()
241 keys_[i] = not_mapped; in Rehash()
268 Object* not_mapped = heap_->not_mapped_symbol(); in Resize() local
269 for (int i = 0; i < capacity_; i++) keys_[i] = not_mapped; in Resize()
274 if (old_keys[i] == not_mapped) continue; in Resize()