Home | History | Annotate | Download | only in src

Lines Matching defs:new_table

16318     Handle<Derived> new_table,
16320 DCHECK(NumberOfElements() < new_table->Capacity());
16323 WriteBarrierMode mode = new_table->GetWriteBarrierMode(no_gc);
16329 new_table->set(i, get(i), mode);
16334 Heap* heap = new_table->GetHeap();
16343 EntryToIndex(new_table->FindInsertionEntry(hash));
16345 new_table->set(insertion_index + j, get(from_index + j), mode);
16349 new_table->SetNumberOfElements(NumberOfElements());
16350 new_table->SetNumberOfDeletedElements(0);
16449 Handle<Derived> new_table = HashTable::New(
16455 table->Rehash(new_table, key);
16456 return new_table;
16497 Handle<Derived> new_table = HashTable::New(
16503 table->Rehash(new_table, key);
16504 return new_table;
18386 Handle<Derived> new_table =
18391 table->SetNextTable(*new_table);
18394 return new_table;
18469 Handle<Derived> new_table =
18474 int new_buckets = new_table->NumberOfBuckets();
18488 Object* chain_entry = new_table->get(kHashTableStartIndex + bucket);
18489 new_table->set(kHashTableStartIndex + bucket, Smi::FromInt(new_entry));
18490 int new_index = new_table->EntryToIndex(new_entry);
18494 new_table->set(new_index + i, value);
18496 new_table->set(new_index + kChainOffset, chain_entry);
18502 new_table->SetNumberOfElements(nof);
18503 table->SetNextTable(*new_table);
18505 return new_table;
18694 Handle<ObjectHashTable> new_table =
18696 weak_collection->set_table(*new_table);
18697 if (*table != *new_table) {
18711 Handle<ObjectHashTable> new_table =
18713 weak_collection->set_table(*new_table);
18714 if (*table != *new_table) {