Home
last modified time | relevance | path

Searched refs:HashRecords (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGlobalsStream.cpp68 EndRecordIndex = GlobalsTable.HashRecords.size() * 12; in findRecordsByName()
73 assert(EndRecordIndex <= GlobalsTable.HashRecords.size()); in findRecordsByName()
75 PSHashRecord PSH = GlobalsTable.HashRecords[StartRecordIndex]; in findRecordsByName()
108 static Error readGSIHashRecords(FixedStreamArray<PSHashRecord> &HashRecords, in readGSIHashRecords() argument
120 if (auto EC = Reader.readArray(HashRecords, NumHashRecords)) in readGSIHashRecords()
173 if (auto EC = readGSIHashRecords(HashRecords, HashHdr, Reader)) in read()
H A DGSIStreamBuilder.cpp44 std::vector<PSHashRecord> HashRecords;
126 Size += HashRecords.size() * sizeof(PSHashRecord); in calculateSerializedLength()
136 Header.HrSize = HashRecords.size() * sizeof(PSHashRecord); in commit()
142 if (auto EC = Writer.writeArray(ArrayRef(HashRecords))) in commit()
221 HashRecords.resize(Records.size()); in finalizeBuckets()
226 HashRecords[HashIdx].Off = I; in finalizeBuckets()
227 HashRecords[HashIdx].CRef = 1; in finalizeBuckets()
237 auto B = HashRecords.begin() + BucketStarts[I]; in finalizeBuckets()
238 auto E = HashRecords.begin() + BucketCursors[I]; in finalizeBuckets()
43 std::vector<PSHashRecord> HashRecords; global() member
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h53 FixedStreamArray<PSHashRecord> HashRecords; variable
66 GSIHashIterator begin() const { return GSIHashIterator(HashRecords.begin()); } in begin()
67 GSIHashIterator end() const { return GSIHashIterator(HashRecords.end()); } in end()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1729 for (const PSHashRecord &HR : Table.HashRecords) in dumpSymbolsFromGSI()