Lines Matching refs:crc32
80 hdr->hdr_crc_table = crc32(0, Z_NULL, 0); in gptupdate()
81 hdr->hdr_crc_table = crc32(hdr->hdr_crc_table, table, in gptupdate()
83 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()
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()
271 hdr->hdr_crc_table = crc32(0, Z_NULL, 0); in gptbootconv()
272 hdr->hdr_crc_table = crc32(hdr->hdr_crc_table, table, in gptbootconv()
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()
313 if (crc32(0, table, nent * hdr->hdr_entsz) != hdr->hdr_crc_table) { in gptread_table()