Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DGlobalsStream.cpp44 static Error checkHashHdrVersion(const GSIHashHeader *HashHdr) { in checkHashHdrVersion() argument
45 if (HashHdr->VerHdr != GSIHashHeader::HdrVersion) in checkHashHdrVersion()
53 static Error readGSIHashHeader(const GSIHashHeader *&HashHdr, in readGSIHashHeader() argument
55 if (Reader.readObject(HashHdr)) in readGSIHashHeader()
59 if (HashHdr->VerSignature != GSIHashHeader::HdrSignature) in readGSIHashHeader()
68 const GSIHashHeader *HashHdr, in readGSIHashRecords() argument
70 if (auto EC = checkHashHdrVersion(HashHdr)) in readGSIHashRecords()
75 if (HashHdr->HrSize % sizeof(PSHashRecord)) in readGSIHashRecords()
78 uint32_t NumHashRecords = HashHdr->HrSize / sizeof(PSHashRecord); in readGSIHashRecords()
89 ArrayRef<uint8_t> &HashBitmap, const GSIHashHeader *HashHdr, in readGSIHashBuckets() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DGlobalsStream.h51 const GSIHashHeader *HashHdr;
58 uint32_t getVerSignature() const { return HashHdr->VerSignature; } in getVerSignature()
59 uint32_t getVerHeader() const { return HashHdr->VerHdr; } in getVerHeader()
60 uint32_t getHashRecordSize() const { return HashHdr->HrSize; } in getHashRecordSize()
61 uint32_t getNumBuckets() const { return HashHdr->NumBuckets; } in getNumBuckets()
/external/llvm/lib/DebugInfo/PDB/Raw/
DPublicsStream.cpp101 if (Reader.readObject(HashHdr)) in reload()
106 if (HashHdr->HrSize % sizeof(PSHashRecord)) in reload()
109 uint32_t NumHashRecords = HashHdr->HrSize / sizeof(PSHashRecord); in reload()
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
DPublicsStream.h69 const GSIHashHeader *HashHdr; variable