Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddmu_objset.c383 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dnode_hash()
388 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dnode_hash()
389 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dnode_hash()
390 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dnode_hash()
391 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 16)) & 0xFF]; in dnode_hash()
H A Dzap_micro.c87 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()
99 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()
118 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
H A Dzvol.c122 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zvol_name_hash()
124 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (*p)) & 0xFF]; in zvol_name_hash()
H A Dsa.c285 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
H A Darc.c799 uint64_t zfs_crc64_table[256]; variable
1309 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Ddmu.h1071 extern uint64_t zfs_crc64_table[256];