Home
last modified time | relevance | path

Searched refs:HashTable (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/deps/v8/src/objects/
H A Dhash-table-inl.h25 HashTable<Derived, Shape>::HashTable(Address ptr) : HashTableBase(ptr) { in HashTable() function in v8::internal::HashTable
31 : HashTable<Derived, Shape>(ptr) {} in ObjectHashTableBase()
39 : HashTable<RegisteredSymbolTable, RegisteredSymbolTableShape>(ptr) { in RegisteredSymbolTable()
49 : HashTable<ObjectHashSet, ObjectHashSetShape>(ptr) { in ObjectHashSet()
54 : HashTable<NameToIndexHashTable, NameToIndexShape>(ptr) { in NameToIndexHashTable()
118 // See matching computation in HashTable::HasSufficientCapacityToAdd(). in ComputeCapacity()
135 Handle<Map> HashTable<Derived, Shape>::GetMap(ReadOnlyRoots roots) { in GetMap()
156 InternalIndex HashTable<Derived, Shape>::FindEntry(IsolateT* isolate, Key key) { in FindEntry()
163 InternalIndex HashTable<Derive
[all...]
H A Dhash-table.h27 // HashTable is a subclass of FixedArray that implements a hash table
93 // number of elements. May be more than HashTable::kMaxCapacity.
125 class EXPORT_TEMPLATE_DECLARE(V8_EXPORT_PRIVATE) HashTable
131 // Returns a new HashTable object.
174 // Maximal capacity of HashTable. Based on maximal length of underlying
180 // Don't shrink a HashTable below this capacity.
270 OBJECT_CONSTRUCTORS(HashTable, HashTableBase);
275 HashTable<class DERIVED, SHAPE>; \
278 HashTable<DERIVED, SHAPE>::New(Isolate*, int, AllocationType, \
281 HashTable<DERIVE
[all...]
H A Dstring-set.h29 class StringSet : public HashTable<StringSet, StringSetShape> {
38 OBJECT_CONSTRUCTORS(StringSet, HashTable<StringSet, StringSetShape>);
H A Dcompilation-cache-table.h85 : public HashTable<CompilationCacheTable, CompilationCacheShape> {
135 HashTable<CompilationCacheTable, CompilationCacheShape>);
H A Dstring-set-inl.h19 StringSet::StringSet(Address ptr) : HashTable<StringSet, StringSetShape>(ptr) { in StringSet()
H A Ddictionary.h36 : public HashTable<Derived, Shape> {
37 using DerivedHashTable = HashTable<Derived, Shape>;
98 OBJECT_CONSTRUCTORS(Dictionary, HashTable<Derived, Shape>);
H A Dcompilation-cache-table-inl.h22 : HashTable<CompilationCacheTable, CompilationCacheShape>(ptr) { in CompilationCacheTable()
H A Dobjects.cc1914 os << "<HashTable[" << FixedArray::cast(*this).length() << "]>"; in HeapObjectShortPrint()
5689 void HashTable<Derived, Shape>::IteratePrefix(ObjectVisitor* v) { in IteratePrefix()
5694 void HashTable<Derived, Shape>::IterateElements(ObjectVisitor* v) { in IterateElements()
5701 Handle<Derived> HashTable<Derived, Shape>::New( in New()
5711 if (capacity > HashTable::kMaxCapacity) { in New()
5719 Handle<Derived> HashTable<Derived, Shape>::NewInternal( in NewInternal()
5734 void HashTable<Derived, Shape>::Rehash(PtrComprCageBase cage_base, in Rehash()
5765 InternalIndex HashTable<Derived, Shape>::EntryForProbe(ReadOnlyRoots roots, in EntryForProbe()
5779 void HashTable<Derived, Shape>::Swap(InternalIndex entry1, InternalIndex entry2, in Swap()
5799 void HashTable<Derive
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DStringMap.cpp81 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in LookupBucketFor() local
92 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
96 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
103 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
135 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in FindKey() local
146 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
198 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in RehashTable() local
227 unsigned FullHash = HashTable[I]; in RehashTable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DStringMap.cpp85 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in LookupBucketFor() local
96 HashTable[FirstTombstone] = FullHashValue; in LookupBucketFor()
100 HashTable[BucketNo] = FullHashValue; in LookupBucketFor()
107 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in LookupBucketFor()
139 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in FindKey() local
150 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) { in FindKey()
202 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); in RehashTable() local
231 unsigned FullHash = HashTable[I]; in RehashTable()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h1 //===- HashTable.h - PDB Hash Table -----------------------------*- C++ -*-===//
34 template <typename ValueT> class HashTable;
41 friend HashTable<ValueT>;
43 HashTableIterator(const HashTable<ValueT> &Map, uint32_t Index, in HashTableIterator()
48 HashTableIterator(const HashTable<ValueT> &Map) : Map(&Map) { in HashTableIterator()
97 const HashTable<ValueT> *Map;
103 class HashTable { class
115 HashTable() { Buckets.resize(8); } in HashTable() function in llvm::pdb::HashTable
116 explicit HashTable(uint32_t Capacity) { in HashTable() function in llvm::pdb::HashTable
317 HashTable NewMa in grow()
[all...]
H A DInjectedSourceStream.h12 #include "llvm/DebugInfo/PDB/Native/HashTable.h"
29 using const_iterator = HashTable<SrcHeaderBlockEntry>::const_iterator;
39 HashTable<SrcHeaderBlockEntry> InjectedSourceTable;
H A DTpiStream.h13 #include "llvm/DebugInfo/PDB/Native/HashTable.h"
53 HashTable<support::ulittle32_t> &getHashAdjusters();
88 HashTable<support::ulittle32_t> HashAdjusters;
H A DNamedStreamMap.h16 #include "llvm/DebugInfo/PDB/Native/HashTable.h"
62 HashTable<support::ulittle32_t> OffsetIndexMap;
H A DPDBFileBuilder.h100 HashTable<SrcHeaderBlockEntry> InjectedSourceTable;
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource4.js194 export class HashTable {
468 var HashTable = /** @class */ (function () {
469 function HashTable(size, hashFn, equalsFn) {
479 HashTable.prototype.add = function (key, data) {
494 HashTable.prototype.remove = function (key) {
516 HashTable.prototype.count = function () { return this.itemCount; };
517 HashTable.prototype.lookup = function (key) {
528 return HashTable;
530 TypeScript.HashTable = HashTable;
[all...]
/third_party/libdrm/
H A Dxf86drmHash.h38 typedef struct HashTable { struct
47 } HashTable, *HashTablePtr; typedef
/third_party/protobuf/php/ext/google/protobuf/
H A Dprotobuf.c73 HashTable object_cache;
76 HashTable name_msg_cache;
77 HashTable name_enum_cache;
H A Darray.c97 static HashTable *RepeatedField_GetProperties(PROTO_VAL *object) { in RepeatedField_GetProperties()
141 HashTable *table = HASH_OF(val); in RepeatedField_GetUpbArray()
H A Dmap.c98 static HashTable *Map_GetProperties(PROTO_VAL *object) { in Map_GetProperties()
145 HashTable *table = HASH_OF(val); in MapField_GetUpbMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h375 std::unique_ptr<HashTableImpl> HashTable; member in llvm::IndexedInstrProf::InstrProfReaderIndex
394 return RecordIterator == HashTable->data_end();
398 HashTable->getInfoObj().setValueProfDataEndianness(Endianness);
412 return Symtab.create(HashTable->keys());
/third_party/cups-filters/scripting/php/
H A Dphpcups.c85 HashTable *ht; /* Option array hash table */ in cups_convert_options()
449 HashTable *ht2; /* Option array hash table */ in PHP_FUNCTION()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
H A DInstrProfReader.cpp581 auto Iter = HashTable->find(FuncName);
582 if (Iter == HashTable->end())
612 HashTable.reset(HashTableImpl::Create(
615 RecordIterator = HashTable->data_begin();
674 for (StringRef Name : Underlying.HashTable->keys()) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringMap.h265 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1), in StringMap() local
280 HashTable[I] = RHSHashTable[I]; in StringMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringMap.h279 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1), in StringMap() local
294 HashTable[I] = RHSHashTable[I]; in StringMap()

Completed in 24 milliseconds

12