Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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.cpp52 std::vector<support::ulittle32_t> HashBuckets; member
127 Size += HashBuckets.size() * sizeof(uint32_t); in calculateSerializedLength()
136 Header.NumBuckets = HashBitmap.size() * 4 + HashBuckets.size() * 4; in commit()
145 if (auto EC = Writer.writeArray(ArrayRef(HashBuckets))) in commit()
280 HashBuckets.push_back(ChainStartOff); in finalizeBuckets()
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h55 FixedStreamArray<support::ulittle32_t> HashBuckets; variable
/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h434 std::optional<std::vector<llvm::yaml::Hex32>> HashBuckets; member
442 {"HashBuckets", HashBuckets.has_value()}, in getEntries()
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1723 if (!Section.HashBuckets) in writeSectionContent()
1736 CBA.write<uint32_t>(Section.HashBuckets->size(), ELFT::TargetEndianness); in writeSectionContent()
1757 for (llvm::yaml::Hex32 Val : *Section.HashBuckets) in writeSectionContent()
1766 Section.HashBuckets->size() * 4 + in writeSectionContent()
H A DELFYAML.cpp1406 IO.mapOptional("HashBuckets", Section.HashBuckets); in sectionMapping()
/openbsd/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1326 S->HashBuckets.emplace(NBuckets); in dumpGnuHashSection()
1327 for (llvm::yaml::Hex32 &Val : *S->HashBuckets) in dumpGnuHashSection()
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1737 for (uint32_t Hash : Table.HashBuckets) in dumpSymbolsFromGSI()