Searched refs:HashTableStartIndex (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | ordered-hash-table.h | 165 static constexpr int HashTableStartIndex() { in HashTableStartIndex() function 169 static constexpr int RemovedHolesIndex() { return HashTableStartIndex(); } in RemovedHolesIndex() 188 return FixedArray::OffsetOfElementAt(HashTableStartIndex()); in HashTableStartOffset() 198 return (FixedArray::kMaxLength - HashTableStartIndex()) / in MaxCapacity() 221 Object entry = this->get(HashTableStartIndex() + bucket); in HashToEntryRaw() 237 return HashTableStartIndex() + NumberOfBuckets() + (entry * kEntrySize); in EntryToIndexRaw()
|
D | ordered-hash-table.cc | 35 HashTableStartIndex() + num_buckets + (capacity * kEntrySize), in Allocate() 39 table->set(HashTableStartIndex() + i, Smi::FromInt(kNotFound)); in Allocate() 56 Derived::GetMap(ReadOnlyRoots(isolate)), HashTableStartIndex(), in AllocateEmpty() 197 table->set(HashTableStartIndex() + bucket, Smi::FromInt(new_entry)); in Add() 213 int index = HashTableStartIndex() + nof_buckets + (i * kEntrySize); in ConvertToKeysArray() 278 Object chain_entry = new_table->get(HashTableStartIndex() + bucket); in Rehash() 279 new_table->set(HashTableStartIndex() + bucket, Smi::FromInt(new_entry)); in Rehash() 404 table->set(HashTableStartIndex() + bucket, Smi::FromInt(new_entry)); in Add() 476 table->set(HashTableStartIndex() + bucket, Smi::FromInt(new_entry)); in Add()
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-collections-gen.cc | 772 table, bucket, CollectionType::HashTableStartIndex() * kTaggedSize))); in FindOrderedHashTableEntry() 809 CollectionType::HashTableStartIndex() * kTaggedSize); in FindOrderedHashTableEntry() 817 (CollectionType::HashTableStartIndex() + CollectionType::kChainOffset) * in FindOrderedHashTableEntry() 1144 (OrderedHashMap::HashTableStartIndex() + in MapIteratorToList() 1562 TableType::HashTableStartIndex() * kTaggedSize); in NextSkipHoles() 1591 (OrderedHashMap::HashTableStartIndex() + OrderedHashMap::kValueOffset) * in TF_BUILTIN() 1662 kTaggedSize * (OrderedHashMap::HashTableStartIndex() + in TF_BUILTIN() 1726 table, bucket, OrderedHashMap::HashTableStartIndex() * kTaggedSize)); in StoreOrderedHashMapNewEntry() 1734 kTaggedSize * OrderedHashMap::HashTableStartIndex()); in StoreOrderedHashMapNewEntry() 1737 kTaggedSize * (OrderedHashMap::HashTableStartIndex() + in StoreOrderedHashMapNewEntry() [all …]
|
/third_party/node/deps/v8/src/diagnostics/ |
D | objects-printer.cc | 947 Object entry = table.get(T::HashTableStartIndex() + bucket); in PrintOrderedHashTableHeaderAndBuckets()
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 3723 IntPtrConstant(CollectionType::HashTableStartIndex()), bucket_count); in AllocateOrderedHashTableWithCapacity() 3747 STATIC_ASSERT(CollectionType::HashTableStartIndex() == in AllocateOrderedHashTableWithCapacity() 3760 CollectionType::HashTableStartIndex() + const_bucket_count); in AllocateOrderedHashTableWithCapacity() 3765 CollectionType::HashTableStartIndex() + i, in AllocateOrderedHashTableWithCapacity() 3779 CollectionType::HashTableStartIndex()) - in AllocateOrderedHashTableWithCapacity() 3802 array_length, IntPtrConstant(CollectionType::HashTableStartIndex())); in AllocateOrderedHashTableWithCapacity()
|
/third_party/node/deps/v8/src/compiler/ |
D | js-call-reducer.cc | 7651 STATIC_ASSERT(OrderedHashMap::HashTableStartIndex() == in ReduceCollectionIteratorPrototypeNext() 7652 OrderedHashSet::HashTableStartIndex()); in ReduceCollectionIteratorPrototypeNext() 7660 jsgraph()->Constant(OrderedHashMap::HashTableStartIndex())); in ReduceCollectionIteratorPrototypeNext()
|