Searched defs:zfs_crc64_table (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfssubr.c28 static uint64_t zfs_crc64_table[256]; variable
56 if (zfs_crc64_table[128] != ZFS_CRC64_POLY) {
57 memset(zfs_crc64_table, 0, sizeof(zfs_crc64_table));
59 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)
342 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
344 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ c) & 0xFF];
/illumos-gate/usr/src/boot/sys/boot/zfs/
H A Dzfsimpl.c69 static uint64_t zfs_crc64_table[256]; variable
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Darc.c1022 uint64_t zfs_crc64_table[256]; variable
1125 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
1128 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF];
1405 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--)

Completed in 83 milliseconds