Home
last modified time | relevance | path

Searched refs:HashHdr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGlobalsStream.cpp85 static Error checkHashHdrVersion(const GSIHashHeader *HashHdr) { in checkHashHdrVersion() argument
86 if (HashHdr->VerHdr != GSIHashHeader::HdrVersion) in checkHashHdrVersion()
94 static Error readGSIHashHeader(const GSIHashHeader *&HashHdr, in readGSIHashHeader() argument
96 if (Reader.readObject(HashHdr)) in readGSIHashHeader()
100 if (HashHdr->VerSignature != GSIHashHeader::HdrSignature) in readGSIHashHeader()
109 const GSIHashHeader *HashHdr, in readGSIHashRecords() argument
111 if (auto EC = checkHashHdrVersion(HashHdr)) in readGSIHashRecords()
116 if (HashHdr->HrSize % sizeof(PSHashRecord)) in readGSIHashRecords()
119 uint32_t NumHashRecords = HashHdr->HrSize / sizeof(PSHashRecord); in readGSIHashRecords()
131 const GSIHashHeader *HashHdr, in readGSIHashBuckets() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h52 const GSIHashHeader *HashHdr;
60 uint32_t getVerSignature() const { return HashHdr->VerSignature; } in getVerSignature()
61 uint32_t getVerHeader() const { return HashHdr->VerHdr; } in getVerHeader()
62 uint32_t getHashRecordSize() const { return HashHdr->HrSize; } in getHashRecordSize()
63 uint32_t getNumBuckets() const { return HashHdr->NumBuckets; } in getNumBuckets()