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

12

/freebsd-13-stable/contrib/ofed/libibnetdisc/
H A Dg_hash_table.cpp42 class HashTable { class
45 HashTable() { }; function in class:HashTable
46 ~HashTable() { };
60 return ((GHashTable *)(new HashTable()));
66 delete (HashTable *)ght;
72 HashTable *ht = (HashTable *)ght;
79 HashTable *ht = (HashTable *)ght;
/freebsd-13-stable/contrib/bmake/
H A Dhash.h90 typedef struct HashTable { struct
97 } HashTable; typedef in typeref:struct:HashTable
101 HashTable *table; /* Table being searched. */
108 HashTable tbl;
123 void HashTable_Init(HashTable *);
124 void HashTable_Done(HashTable *);
125 HashEntry *HashTable_FindEntry(HashTable *, const char *);
126 void *HashTable_FindValue(HashTable *, const char *);
128 void *HashTable_FindValueHash(HashTable *, const char *, unsigned int);
129 HashEntry *HashTable_CreateEntry(HashTable *, cons
[all...]
H A Dhash.c108 HashTable_Find(HashTable *t, unsigned int h, const char *key)
131 HashTable_Init(HashTable *t)
150 HashTable_Done(HashTable *t)
172 HashTable_FindEntry(HashTable *t, const char *key)
180 HashTable_FindValue(HashTable *t, const char *key)
191 HashTable_FindValueHash(HashTable *t, const char *key, unsigned int h)
202 HashTable_Enlarge(HashTable *t)
239 HashTable_CreateEntry(HashTable *t, const char *key, Boolean *out_isNew)
269 HashTable_Set(HashTable *t, const char *key, void *value)
278 HashTable_DeleteEntry(HashTable *
[all...]
H A Ddir.c246 HashTable /* of CachedDirListNode */ table;
285 static HashTable mtimes;
287 static HashTable lmtimes; /* same as mtimes but for lstat */
424 HashTable *tbl = flags & CST_LSTAT ? &lmtimes : &mtimes;
H A Dtarg.c123 static HashTable allTargetsByName;
H A Dmake.h456 HashTable /* of Var pointer */ vars;
H A Darch.c159 HashTable members; /* All the members of the archive described
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
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 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,
48 HashTableIterator(const HashTable<ValueT> &Map) : Map(&Map) {
97 const HashTable<ValueT> *Map;
103 class HashTable { class in namespace:llvm::pdb
115 HashTable() { Buckets.resize(8); } function in class:llvm::pdb::HashTable
116 explicit HashTable(uint32_t Capacity) { function in class:llvm::pdb::HashTable
317 HashTable NewMa
[all...]
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.h99 HashTable<SrcHeaderBlockEntry> InjectedSourceTable;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp82 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
93 HashTable[FirstTombstone] = FullHashValue;
97 HashTable[BucketNo] = FullHashValue;
105 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
138 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
149 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
202 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
231 unsigned FullHash = HashTable[I];
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlz4.c473 HTYPE *HashTable = (HTYPE *) (srt->hashTable); local
495 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
518 ref = base + HashTable[h];
519 HashTable[h] = ip - base;
609 HashTable[LZ4_HASH_VALUE(ip - 2)] = ip - 2 - base;
612 ref = base + HashTable[LZ4_HASH_VALUE(ip)];
613 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
664 U16 *HashTable = (U16 *) (srt->hashTable); local
707 ref = base + HashTable[h];
708 HashTable[
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h499 HashTableTy HashTable;
523 return HashTable.getAllocator();
529 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first;
566 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first;
590 iterator begin() const { return HashTable.begin(); }
591 iterator end() const { return HashTable.end(); }
592 unsigned size() const { return HashTable.size(); }
594 iterator find(StringRef Name) const { return HashTable.find(Name); }
/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c478 HTYPE *HashTable = (HTYPE *) (srt->hashTable); local
480 HTYPE HashTable[HASHTABLESIZE] = { 0 };
503 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
526 ref = base + HashTable[h];
527 HashTable[h] = ip - base;
617 HashTable[LZ4_HASH_VALUE(ip - 2)] = ip - 2 - base;
620 ref = base + HashTable[LZ4_HASH_VALUE(ip)];
621 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
673 U16 *HashTable = (U16 *) (srt->hashTable); local
675 U16 HashTable[HASH64KTABLESIZ
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp67 : HashTable(8192), // Start with space for 8K identifiers.
331 unsigned NumBuckets = HashTable.getNumBuckets();
332 unsigned NumIdentifiers = HashTable.getNumItems();
339 I = HashTable.begin(), E = HashTable.end(); I != E; ++I) {
356 HashTable.getAllocator().PrintStats();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h61 using HashTable = llvm::OnDiskIterableChainedHashTable<Info>;
64 HashTable Table;
218 OnDiskTable::HashTable::readNumBucketsAndEntries(Buckets);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h375 std::unique_ptr<HashTableImpl> HashTable; member in class:llvm::IndexedInstrProf::InstrProfReaderIndex
394 return RecordIterator == HashTable->data_end();
398 HashTable->getInfoObj().setValueProfDataEndianness(Endianness);
412 return Symtab.create(HashTable->keys());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp582 auto Iter = HashTable->find(FuncName);
583 if (Iter == HashTable->end())
613 HashTable.reset(HashTableImpl::Create(
616 RecordIterator = HashTable->data_begin();
675 for (StringRef Name : Underlying.HashTable->keys()) {
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h144 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1), local
159 HashTable[I] = RHSHashTable[I];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStream.cpp238 HashTable<support::ulittle32_t> &TpiStream::getHashAdjusters() {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp292 const Elf_Hash *HashTable = nullptr; member in class:__anon4860::ELFDumper
364 const Elf_Hash *getHashTable() const { return HashTable; }
851 void printHashHistogram(const Elf_Hash &HashTable);
854 void printHashTableSymbols(const ELFO *Obj, const Elf_Hash &HashTable);
2136 HashTable = reinterpret_cast<const Elf_Hash *>(
2265 if (HashTable) {
2269 else if (HashTable->nchain != DynSymRegion->Size / DynSymRegion->EntSize)
2271 "hash table nchain (" + Twine(HashTable->nchain) +
2293 if (HashTable && DynSymRegion)
2294 DynSymRegion->Size = HashTable
4772 printHashHistogram(const Elf_Hash &HashTable) argument
[all...]
H A Dllvm-readobj.cpp204 cl::opt<bool> HashTable("hash-table",
492 if (opts::HashTable)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp185 using HashTable = DenseMap<BlockNode::IndexType, Weight>;
187 HashTable Combined(NextPowerOf2(2 * Weights.size()));

Completed in 210 milliseconds

12