Lines Matching refs:HashHdr
84 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
133 if (auto EC = checkHashHdrVersion(HashHdr)) in readGSIHashBuckets()
172 if (auto EC = readGSIHashHeader(HashHdr, Reader)) in read()
174 if (auto EC = readGSIHashRecords(HashRecords, HashHdr, Reader)) in read()
176 if (HashHdr->HrSize > 0) in read()
177 if (auto EC = readGSIHashBuckets(HashBuckets, HashBitmap, HashHdr, in read()