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.cpp84 static Error checkHashHdrVersion(const GSIHashHeader *HashHdr) { in checkHashHdrVersion() argument
85 if (HashHdr->VerHdr != GSIHashHeader::HdrVersion) in checkHashHdrVersion()
93 static Error readGSIHashHeader(const GSIHashHeader *&HashHdr, in readGSIHashHeader() argument
95 if (Reader.readObject(HashHdr)) in readGSIHashHeader()
99 if (HashHdr->VerSignature != GSIHashHeader::HdrSignature) in readGSIHashHeader()
108 const GSIHashHeader *HashHdr, in readGSIHashRecords() argument
110 if (auto EC = checkHashHdrVersion(HashHdr)) in readGSIHashRecords()
115 if (HashHdr->HrSize % sizeof(PSHashRecord)) in readGSIHashRecords()
118 uint32_t NumHashRecords = HashHdr->HrSize / sizeof(PSHashRecord); in readGSIHashRecords()
130 const GSIHashHeader *HashHdr, in readGSIHashBuckets() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGlobalsStream.h53 const GSIHashHeader *HashHdr;
61 uint32_t getVerSignature() const { return HashHdr->VerSignature; } in getVerSignature()
62 uint32_t getVerHeader() const { return HashHdr->VerHdr; } in getVerHeader()
63 uint32_t getHashRecordSize() const { return HashHdr->HrSize; } in getHashRecordSize()
64 uint32_t getNumBuckets() const { return HashHdr->NumBuckets; } in getNumBuckets()