Searched refs:zfs_crc64_table (Results 1 – 5 of 5) sorted by relevance
175 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in dbuf_hash()176 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (lvl)) & 0xFF]; in dbuf_hash()177 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (osv >> 6)) & 0xFF]; in dbuf_hash()178 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 0)) & 0xFF]; in dbuf_hash()179 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (obj >> 8)) & 0xFF]; in dbuf_hash()180 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 0)) & 0xFF]; in dbuf_hash()181 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (blkid >> 8)) & 0xFF]; in dbuf_hash()
87 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()100 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()120 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
1245 uint64_t zfs_crc64_table[256]; variable1429 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in buf_hash()1432 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ vdva[i]) & 0xFF]; in buf_hash()1709 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
288 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
965 extern uint64_t zfs_crc64_table[256];