Lines Matching refs:new_table
6043 Handle<ObjectHashTable> new_table = ObjectHashTable::Put(hashtable, key, in SetHiddenProperty() local
6045 if (*new_table != *hashtable) { in SetHiddenProperty()
6048 SetHiddenPropertiesHashTable(object, new_table); in SetHiddenProperty()
17125 Handle<Derived> new_table, in Rehash() argument
17127 DCHECK(NumberOfElements() < new_table->Capacity()); in Rehash()
17130 WriteBarrierMode mode = new_table->GetWriteBarrierMode(no_gc); in Rehash()
17136 new_table->set(i, get(i), mode); in Rehash()
17147 EntryToIndex(new_table->FindInsertionEntry(hash)); in Rehash()
17149 new_table->set(insertion_index + j, get(from_index + j), mode); in Rehash()
17153 new_table->SetNumberOfElements(NumberOfElements()); in Rehash()
17154 new_table->SetNumberOfDeletedElements(0); in Rehash()
17243 Handle<Derived> new_table = HashTable::New( in EnsureCapacity() local
17249 table->Rehash(new_table, key); in EnsureCapacity()
17250 return new_table; in EnsureCapacity()
17291 Handle<Derived> new_table = HashTable::New( in Shrink() local
17297 table->Rehash(new_table, key); in Shrink()
17298 return new_table; in Shrink()
18733 Handle<Derived> new_table = in Clear() local
18738 table->SetNextTable(*new_table); in Clear()
18741 return new_table; in Clear()
18792 Handle<Derived> new_table = in Rehash() local
18798 int new_buckets = new_table->NumberOfBuckets(); in Rehash()
18811 Object* chain_entry = new_table->get(kHashTableStartIndex + bucket); in Rehash()
18812 new_table->set(kHashTableStartIndex + bucket, Smi::FromInt(new_entry)); in Rehash()
18813 int new_index = new_table->EntryToIndex(new_entry); in Rehash()
18817 new_table->set(new_index + i, value); in Rehash()
18819 new_table->set(new_index + kChainOffset, chain_entry); in Rehash()
18825 new_table->SetNumberOfElements(nof); in Rehash()
18826 table->SetNextTable(*new_table); in Rehash()
18828 return new_table; in Rehash()
19016 Handle<ObjectHashTable> new_table = in Set() local
19018 weak_collection->set_table(*new_table); in Set()
19019 if (*table != *new_table) { in Set()
19033 Handle<ObjectHashTable> new_table = in Delete() local
19035 weak_collection->set_table(*new_table); in Delete()
19036 if (*table != *new_table) { in Delete()