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.cpp58 uint32_t LastBucketIndex = GlobalsTable.HashBuckets.size() - 1; in findRecordsByName()
60 GlobalsTable.HashBuckets[CompressedBucketIndex] / 12; in findRecordsByName()
63 EndRecordIndex = GlobalsTable.HashBuckets[CompressedBucketIndex + 1]; in findRecordsByName()
128 readGSIHashBuckets(FixedStreamArray<support::ulittle32_t> &HashBuckets, in readGSIHashBuckets() argument
161 if (auto EC = Reader.readArray(HashBuckets, NumBuckets)) in readGSIHashBuckets()
175 if (auto EC = readGSIHashBuckets(HashBuckets, HashBitmap, HashHdr, in read()
H A DGSIStreamBuilder.cpp54 std::vector<support::ulittle32_t> HashBuckets; member
129 Size += HashBuckets.size() * sizeof(uint32_t); in calculateSerializedLength()
138 Header.NumBuckets = HashBitmap.size() * 4 + HashBuckets.size() * 4; in commit()
147 if (auto EC = Writer.writeArray(ArrayRef(HashBuckets))) in commit()
282 HashBuckets.push_back(ChainStartOff); in finalizeBuckets()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h56 FixedStreamArray<support::ulittle32_t> HashBuckets; variable
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h475 std::optional<std::vector<llvm::yaml::Hex32>> HashBuckets; member
483 {"HashBuckets", HashBuckets.has_value()}, in getEntries()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1870 if (!Section.HashBuckets) in writeSectionContent()
1883 CBA.write<uint32_t>(Section.HashBuckets->size(), ELFT::Endianness); in writeSectionContent()
1904 for (llvm::yaml::Hex32 Val : *Section.HashBuckets) in writeSectionContent()
1913 Section.HashBuckets->size() * 4 + in writeSectionContent()
H A DELFYAML.cpp1473 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()