Lines Matching refs:new_table
16341 Handle<Derived> new_table, in Rehash() argument
16343 DCHECK(NumberOfElements() < new_table->Capacity()); in Rehash()
16346 WriteBarrierMode mode = new_table->GetWriteBarrierMode(no_gc); in Rehash()
16352 new_table->set(i, get(i), mode); in Rehash()
16357 Heap* heap = new_table->GetHeap(); in Rehash()
16366 EntryToIndex(new_table->FindInsertionEntry(hash)); in Rehash()
16368 new_table->set(insertion_index + j, get(from_index + j), mode); in Rehash()
16372 new_table->SetNumberOfElements(NumberOfElements()); in Rehash()
16373 new_table->SetNumberOfDeletedElements(0); in Rehash()
16472 Handle<Derived> new_table = HashTable::New( in EnsureCapacity() local
16478 table->Rehash(new_table, key); in EnsureCapacity()
16479 return new_table; in EnsureCapacity()
16520 Handle<Derived> new_table = HashTable::New( in Shrink() local
16526 table->Rehash(new_table, key); in Shrink()
16527 return new_table; in Shrink()
18409 Handle<Derived> new_table = in Clear() local
18414 table->SetNextTable(*new_table); in Clear()
18417 return new_table; in Clear()
18492 Handle<Derived> new_table = in Rehash() local
18497 int new_buckets = new_table->NumberOfBuckets(); in Rehash()
18511 Object* chain_entry = new_table->get(kHashTableStartIndex + bucket); in Rehash()
18512 new_table->set(kHashTableStartIndex + bucket, Smi::FromInt(new_entry)); in Rehash()
18513 int new_index = new_table->EntryToIndex(new_entry); in Rehash()
18517 new_table->set(new_index + i, value); in Rehash()
18519 new_table->set(new_index + kChainOffset, chain_entry); in Rehash()
18525 new_table->SetNumberOfElements(nof); in Rehash()
18526 table->SetNextTable(*new_table); in Rehash()
18528 return new_table; in Rehash()
18717 Handle<ObjectHashTable> new_table = in Set() local
18719 weak_collection->set_table(*new_table); in Set()
18720 if (*table != *new_table) { in Set()
18734 Handle<ObjectHashTable> new_table = in Delete() local
18736 weak_collection->set_table(*new_table); in Delete()
18737 if (*table != *new_table) { in Delete()