Home
last modified time | relevance | path

Searched refs:HashBuckets (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGlobalsStream.cpp59 uint32_t LastBucketIndex = GlobalsTable.HashBuckets.size() - 1; in findRecordsByName()
61 GlobalsTable.HashBuckets[CompressedBucketIndex] / 12; in findRecordsByName()
64 EndRecordIndex = GlobalsTable.HashBuckets[CompressedBucketIndex + 1]; in findRecordsByName()
129 readGSIHashBuckets(FixedStreamArray<support::ulittle32_t> &HashBuckets, in readGSIHashBuckets() argument
162 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) in readGSIHashBuckets()
176 if (auto EC = readGSIHashBuckets(HashBuckets, HashBitmap, HashHdr, in read()
H A DGSIStreamBuilder.cpp53 std::vector<support::ulittle32_t> HashBuckets;
128 Size += HashBuckets.size() * sizeof(uint32_t); in calculateSerializedLength()
137 Header.NumBuckets = HashBitmap.size() * 4 + HashBuckets.size() * 4; in commit()
146 if (auto EC = Writer.writeArray(ArrayRef(HashBuckets))) in commit()
263 // For each non-empty bucket, push the bucket start offset into HashBuckets in finalizeBuckets()
281 HashBuckets.push_back(ChainStartOff); in finalizeBuckets()
52 std::vector<support::ulittle32_t> HashBuckets; global() member
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h55 FixedStreamArray<support::ulittle32_t> HashBuckets; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h460 std::optional<std::vector<llvm::yaml::Hex32>> HashBuckets; member
468 {"HashBuckets", HashBuckets.has_value()}, in getEntries()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1843 if (!Section.HashBuckets) in writeSectionContent()
1856 CBA.write<uint32_t>(Section.HashBuckets->size(), ELFT::Endianness); in writeSectionContent()
1877 for (llvm::yaml::Hex32 Val : *Section.HashBuckets) in writeSectionContent()
1886 Section.HashBuckets->size() * 4 + in writeSectionContent()
H A DELFYAML.cpp1441 IO.mapOptional("HashBuckets", Section.HashBuckets); in sectionMapping()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1737 for (uint32_t Hash : Table.HashBuckets) in dumpSymbolsFromGSI()