Searched refs:zfs_crc64_table (Results 1 – 6 of 6) sorted by relevance
383 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()
87 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()
122 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()
285 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
799 uint64_t zfs_crc64_table[256]; variable1309 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
1071 extern uint64_t zfs_crc64_table[256];