Searched refs:HashHdr (Results 1 – 4 of 4) sorted by relevance
44 static Error checkHashHdrVersion(const GSIHashHeader *HashHdr) { in checkHashHdrVersion() argument45 if (HashHdr->VerHdr != GSIHashHeader::HdrVersion) in checkHashHdrVersion()53 static Error readGSIHashHeader(const GSIHashHeader *&HashHdr, in readGSIHashHeader() argument55 if (Reader.readObject(HashHdr)) in readGSIHashHeader()59 if (HashHdr->VerSignature != GSIHashHeader::HdrSignature) in readGSIHashHeader()68 const GSIHashHeader *HashHdr, in readGSIHashRecords() argument70 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 …]
51 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()
101 if (Reader.readObject(HashHdr)) in reload()106 if (HashHdr->HrSize % sizeof(PSHashRecord)) in reload()109 uint32_t NumHashRecords = HashHdr->HrSize / sizeof(PSHashRecord); in reload()
69 const GSIHashHeader *HashHdr; variable