Searched refs:zfs_crc64_table (Results 1 – 5 of 5) sorted by relevance
109 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dbuf_hash()110 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF]; in dbuf_hash()111 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dbuf_hash()112 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dbuf_hash()113 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dbuf_hash()114 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF]; in dbuf_hash()115 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF]; in dbuf_hash()
86 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()99 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()119 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
896 uint64_t zfs_crc64_table[256]; variable1277 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in buf_hash()1280 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; in buf_hash()1557 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
287 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
947 extern uint64_t zfs_crc64_table[256];