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

/freebsd-11-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-11-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.h100 HashTable<SrcHeaderBlockEntry> InjectedSourceTable;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringMap.cpp85 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
96 HashTable[FirstTombstone] = FullHashValue;
100 HashTable[BucketNo] = FullHashValue;
107 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
139 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
150 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
202 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1); local
231 unsigned FullHash = HashTable[I];
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dlz4.c471 HTYPE *HashTable = (HTYPE *) (srt->hashTable); local
473 HTYPE HashTable[HASHTABLESIZE] = { 0 };
496 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
519 ref = base + HashTable[h];
520 HashTable[h] = ip - base;
610 HashTable[LZ4_HASH_VALUE(ip - 2)] = ip - 2 - base;
613 ref = base + HashTable[LZ4_HASH_VALUE(ip)];
614 HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
666 U16 *HashTable = (U16 *) (srt->hashTable); local
668 U16 HashTable[HASH64KTABLESIZ
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DIdentifierTable.h500 HashTableTy HashTable;
524 return HashTable.getAllocator();
530 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first;
567 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first;
591 iterator begin() const { return HashTable.begin(); }
592 iterator end() const { return HashTable.end(); }
593 unsigned size() const { return HashTable.size(); }
595 iterator find(StringRef Name) const { return HashTable.find(Name); }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp60 : HashTable(8192), // Start with space for 8K identifiers.
322 unsigned NumBuckets = HashTable.getNumBuckets();
323 unsigned NumIdentifiers = HashTable.getNumItems();
330 I = HashTable.begin(), E = HashTable.end(); I != E; ++I) {
347 HashTable.getAllocator().PrintStats();
/freebsd-11-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-11-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-11-stable/contrib/llvm-project/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()) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DTpiStream.cpp238 HashTable<support::ulittle32_t> &TpiStream::getHashAdjusters() {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h279 unsigned *HashTable = (unsigned *)(TheTable + NumBuckets + 1), local
294 HashTable[I] = RHSHashTable[I];
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp179 using HashTable = DenseMap<BlockNode::IndexType, Weight>;
181 HashTable Combined(NextPowerOf2(2 * Weights.size()));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp204 cl::opt<bool> HashTable("hash-table",
488 if (opts::HashTable)
H A DELFDumper.cpp275 const Elf_Hash *HashTable = nullptr; member in class:__anon72::ELFDumper
340 const Elf_Hash *getHashTable() const { return HashTable; }
1999 HashTable = reinterpret_cast<const Elf_Hash *>(
2482 DictScope D(W, "HashTable");
2483 if (!HashTable)
2485 W.printNumber("Num Buckets", HashTable->nbucket);
2486 W.printNumber("Num Chains", HashTable->nchain);
2487 W.printList("Buckets", HashTable->buckets());
2488 W.printList("Chains", HashTable->chains());
4242 if (const Elf_Hash *HashTable
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp821 llvm::Type *HashTable = llvm::ArrayType::get(IntPtrTy, CacheSize); local
822 llvm::Value *Cache = CGM.CreateRuntimeVariable(HashTable,
/freebsd-11-stable/lib/clang/libllvm/
H A DMakefile485 SRCS_EXT+= DebugInfo/PDB/Native/HashTable.cpp

Completed in 311 milliseconds