Home
last modified time | relevance | path

Searched refs:hdr_crc_self (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/boot/common/
H A Dgpt.c83 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptupdate()
84 hdr->hdr_crc_self = crc32(hdr->hdr_crc_self, hdr, hdr->hdr_size); in gptupdate()
203 crc = hdr->hdr_crc_self; in gptread_hdr()
204 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptread_hdr()
205 if (crc32(hdr->hdr_crc_self, hdr, hdr->hdr_size) != crc) { in gptread_hdr()
210 hdr->hdr_crc_self = crc; in gptread_hdr()
274 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gptbootconv()
275 hdr->hdr_crc_self = crc32(hdr->hdr_crc_self, hdr, hdr->hdr_size); in gptbootconv()
H A Dpart.c189 crc = le32toh(hdr->hdr_crc_self); in gpt_checkhdr()
190 hdr->hdr_crc_self = crc32(0, Z_NULL, 0); in gpt_checkhdr()
191 if (crc32(hdr->hdr_crc_self, (const Bytef *)hdr, sz) != crc) { in gpt_checkhdr()
195 hdr->hdr_crc_self = crc; in gpt_checkhdr()
/illumos-gate/usr/src/boot/sys/sys/
H A Dgpt.h38 uint32_t hdr_crc_self; member