Lines Matching refs:new_table
5735 Derived new_table) {
5737 WriteBarrierMode mode = new_table.GetWriteBarrierMode(no_gc);
5739 DCHECK_LT(NumberOfElements(), new_table.Capacity());
5743 new_table.set(i, get(cage_base, i), mode);
5754 EntryToIndex(new_table.FindInsertionEntry(cage_base, roots, hash));
5755 new_table.set_key(insertion_index, get(cage_base, from_index), mode);
5757 new_table.set(insertion_index + j, get(cage_base, from_index + j), mode);
5760 new_table.SetNumberOfElements(NumberOfElements());
5761 new_table.SetNumberOfDeletedElements(0);
5862 Handle<Derived> new_table = HashTable::New(
5866 table->Rehash(isolate, *new_table);
5867 return new_table;
5922 Handle<Derived> new_table =
5927 table->Rehash(isolate, *new_table);
5928 return new_table;
6475 Handle<OrderedHashSet> new_table =
6477 set_table(*new_table);
6493 Handle<OrderedHashMap> new_table =
6495 set_table(*new_table);
6512 Handle<EphemeronHashTable> new_table = EphemeronHashTable::Put(
6514 weak_collection->set_table(*new_table);
6515 if (*table != *new_table) {
6529 Handle<EphemeronHashTable> new_table = EphemeronHashTable::Remove(
6531 weak_collection->set_table(*new_table);
6532 if (*table != *new_table) {