/src/sys/ufs/chfs/ |
media.h | 73 le32 hdr_crc; /* crc of the first 3 fields */ member in struct:chfs_flash_node_hdr 82 le32 hdr_crc; /* crc of the first 3 fields */ member in struct:chfs_flash_vnode 102 le32 hdr_crc; /* crc of the first 3 fields */ member in struct:chfs_flash_data_node 121 le32 hdr_crc; /* crc of the first 3 fields */ member in struct:chfs_flash_dirent_node 140 le32 hdr_crc; /* crc of the first 3 fields */ member in struct:chfs_flash_padding_node
|
chfs_scan.c | 80 uint32_t crc, hdr_crc; local in function:chfs_scan_check_node_hdr 89 hdr_crc = le32toh(nhdr->hdr_crc); 92 if (crc != hdr_crc) {
|
ebh.c | 295 uint32_t magic, crc, hdr_crc; local in function:nor_check_eb_hdr 315 hdr_crc = le32toh(ebhdr->ec_hdr.crc_ec); 317 if (hdr_crc != crc) { 338 hdr_crc = le32toh(ebhdr->u.nor_hdr.crc); 349 if (crc != hdr_crc) { 374 uint32_t magic, crc, hdr_crc; local in function:nand_check_eb_hdr 393 hdr_crc = le32toh(ebhdr->ec_hdr.crc_ec); 395 if (hdr_crc != crc) { 410 hdr_crc = le32toh(ebhdr->u.nand_hdr.crc); 415 if (crc != hdr_crc) { [all...] |
chfs_write.c | 72 fvnode->hdr_crc = htole32(crc32(0, (uint8_t *)fvnode, 187 fdirent->hdr_crc = htole32(crc32(0, (uint8_t *)fdirent, 307 dnode->hdr_crc = htole32(crc32(0, (uint8_t *)dnode,
|
chfs_readinode.c | 812 if (crc != le32toh(dnode->hdr_crc)) { 813 chfs_err("CRC check failed. calc: 0x%x orig: 0x%x\n", crc, le32toh(dnode->hdr_crc)); 1150 if (crc != le32toh(dnode->hdr_crc)) { 1151 chfs_err("CRC check failed. calc: 0x%x orig: 0x%x\n", crc, le32toh(dnode->hdr_crc));
|
chfs_wbuf.c | 83 padnode->hdr_crc = htole32(crc32(0, (uint8_t *)padnode,
|
chfs_gc.c | 739 if (crc != le32toh(nhdr->hdr_crc)) {
|
/src/usr.sbin/makefs/chfs/ |
chfs_mkfs.c | 170 fvnode.hdr_crc = htole32(crc32(0, (uint8_t *)&fvnode, 202 fdirent.hdr_crc = htole32(crc32(0, (uint8_t *)&fdirent, 293 fdata.hdr_crc = htole32(crc32(0, (uint8_t *)&fdata,
|
/src/usr.sbin/fstyp/ |
hammer_disk.h | 586 hammer_crc_t hdr_crc; /* XOR crc up to field w/ crc after field */ member in struct:hammer_fifo_head 589 #define HAMMER_FIFO_HEAD_CRCOFF offsetof(struct hammer_fifo_head, hdr_crc)
|