Searched refs:HashTableBase (Results 1 – 14 of 14) sorted by relevance
186 class HashTableBase {197 HashTableBase() = default;200 ~HashTableBase() { in ~HashTableBase()208 HashTableBase(const HashTableBase& other) in HashTableBase() function218 HashTableBase& operator=(const HashTableBase& other) {220 this->~HashTableBase();221 new (this) HashTableBase(other);226 HashTableBase(HashTableBase&& other) noexcept in HashTableBase() function237 HashTableBase& operator=(HashTableBase&& other) noexcept {239 this->~HashTableBase();[all …]
74 struct KeySet : public HashTableBase<KeyNode> {75 using BaseType = HashTableBase<KeyNode>;
58 class PointerSet : public HashTableBase<PointerSetNode> {61 using BaseType = HashTableBase<NodeType>;
83 class TestHashTable : public HashTableBase<TestHashNode> {85 using BaseType = HashTableBase<TestHashNode>;
29 class BuilderRecordMap : public HashTableBase<BuilderRecordNode> {
45 using UniqueVectorHashTableBase = HashTableBase<UniqueVectorNode>;
22 OBJECT_CONSTRUCTORS_IMPL(HashTableBase, FixedArray) in OBJECT_CONSTRUCTORS_IMPL() argument25 HashTable<Derived, Shape>::HashTable(Address ptr) : HashTableBase(ptr) { in OBJECT_CONSTRUCTORS_IMPL()85 int HashTableBase::NumberOfElements() const { in NumberOfElements()89 int HashTableBase::NumberOfDeletedElements() const { in NumberOfDeletedElements()93 int HashTableBase::Capacity() const { in Capacity()97 InternalIndex::Range HashTableBase::IterateEntries() const { in IterateEntries()101 void HashTableBase::ElementAdded() { in ElementAdded()105 void HashTableBase::ElementRemoved() { in ElementRemoved()110 void HashTableBase::ElementsRemoved(int n) { in ElementsRemoved()116 int HashTableBase::ComputeCapacity(int at_least_space_for) { in ComputeCapacity()[all …]
70 class V8_EXPORT_PRIVATE HashTableBase : public NON_EXPORTED_BASE(FixedArray) { in NON_EXPORTED_BASE()121 OBJECT_CONSTRUCTORS(HashTableBase, FixedArray); in NON_EXPORTED_BASE()126 : public HashTableBase { in EXPORT_TEMPLATE_DECLARE()270 OBJECT_CONSTRUCTORS(HashTable, HashTableBase); in EXPORT_TEMPLATE_DECLARE()
94 IS_TYPE_FUNCTION_DECL(HashTableBase) in IS_TYPE_FUNCTION_DECL() argument
139 HashTableBase::kPrefixStartIndex; in EXPORT_TEMPLATE_DECLARE()
318 IS_TYPE_FUNCTION_DECL(HashTableBase)
92 IS_TYPE_FUNCTION_DEF(HashTableBase) in IS_TYPE_FUNCTION_DEF() argument
1099 FixedArray::OffsetOfElementAt(HashTableBase::kNumberOfElementsIndex), in ForHashTableBaseNumberOfElements()1112 HashTableBase::kNumberOfDeletedElementsIndex), in ForHashTableBaseNumberOfDeletedElement()1125 FixedArray::OffsetOfElementAt(HashTableBase::kCapacityIndex), in ForHashTableBaseCapacity()
8446 return IntPtrMax(capacity, IntPtrConstant(HashTableBase::kMinCapacity)); in HashTableComputeCapacity()14886 length = GetNumberOfElements(UncheckedCast<HashTableBase>(properties)); in CheckEnumCache()