Home
last modified time | relevance | path

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

/illumos-gate/usr/src/boot/sys/cddl/boot/zfs/
H A Dzfssubr.c29 static uint64_t zfs_crc64_table[256]; variable
49 if (zfs_crc64_table[128] != ZFS_CRC64_POLY) { in zfs_init_crc()
50 memset(zfs_crc64_table, 0, sizeof (zfs_crc64_table)); in zfs_init_crc()
52 ct = zfs_crc64_table + i; in zfs_init_crc()
362 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()
364 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ c) & 0xFF]; in zap_hash()
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_objset.c378 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dnode_hash()
383 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dnode_hash()
384 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dnode_hash()
385 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dnode_hash()
386 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 16)) & 0xFF]; in dnode_hash()
H A Dzap_micro.c89 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()
101 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()
120 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
H A Dsa.c286 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
H A Darc.c700 uint64_t zfs_crc64_table[256]; variable
1154 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Ddmu.h1085 extern uint64_t zfs_crc64_table[256];