Home
last modified time | relevance | path

Searched refs:zfs_crc64_table (Results 1 – 4 of 4) sorted by relevance

/dports/misc/rump/buildrump.sh-b914579/src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddbuf.c83 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dbuf_hash()
84 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF]; in dbuf_hash()
85 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dbuf_hash()
86 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dbuf_hash()
87 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dbuf_hash()
88 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF]; in dbuf_hash()
89 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF]; in dbuf_hash()
H A Dzap_micro.c80 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()
93 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()
113 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
H A Darc.c577 uint64_t zfs_crc64_table[256]; variable
673 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in buf_hash()
676 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; in buf_hash()
905 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
/dports/misc/rump/buildrump.sh-b914579/src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Ddmu.h708 extern uint64_t zfs_crc64_table[256];