Lines Matching defs:table
11 #include "src/objects/hash-table.h"
171 // EnsureCapacity will guarantee the hash table is never full.
176 // string table during bootstrapping.
256 // To scale a computed hash code to fit within the hash table, we
317 IsolateT* isolate, Handle<NameToIndexHashTable> table, Handle<Name> key,
321 SLOW_DCHECK(table->FindEntry(isolate, key).is_not_found());
323 table = EnsureCapacity(isolate, table);
326 InternalIndex entry = table->FindInsertionEntry(isolate, key->hash());
327 table->set(EntryToIndex(entry), *key);
328 table->set(EntryToValueIndex(entry), Smi::FromInt(index));
329 table->ElementAdded();
330 return table;