Home
last modified time | relevance | path

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

/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Ddbuf.c175 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dbuf_hash()
176 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF]; in dbuf_hash()
177 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dbuf_hash()
178 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dbuf_hash()
179 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dbuf_hash()
180 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF]; in dbuf_hash()
181 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF]; in dbuf_hash()
H A Dzap_micro.c87 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()
100 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()
120 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
H A Darc.c1245 uint64_t zfs_crc64_table[256]; variable
1429 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in buf_hash()
1432 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; in buf_hash()
1709 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
H A Dsa.c288 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
/netbsd-src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
H A Ddmu.h965 extern uint64_t zfs_crc64_table[256];