Searched refs:zfs_crc64_table (Results 1 – 5 of 5) sorted by relevance
108 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dbuf_hash()109 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF]; in dbuf_hash()110 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dbuf_hash()111 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dbuf_hash()112 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dbuf_hash()113 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF]; in dbuf_hash()114 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF]; in dbuf_hash()
85 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()98 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()118 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
892 uint64_t zfs_crc64_table[256]; variable1273 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in buf_hash()1276 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; in buf_hash()1553 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
286 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
943 extern uint64_t zfs_crc64_table[256];