Searched refs:zfs_crc64_table (Results 1 – 6 of 6) sorted by relevance
29 static uint64_t zfs_crc64_table[256]; variable54 if (zfs_crc64_table[128] != ZFS_CRC64_POLY) { in zfs_init_crc()55 memset(zfs_crc64_table, 0, sizeof(zfs_crc64_table)); in zfs_init_crc()57 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in zfs_init_crc()373 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()375 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ c) & 0xFF]; in zap_hash()
125 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zap_hash()137 zfs_crc64_table[(h ^ word) & 0xFF]; in zap_hash()156 zfs_crc64_table[(h ^ *cp) & 0xFF]; in zap_hash()
154 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY); in zvol_name_hash()156 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (*p)) & 0xFF]; in zvol_name_hash()
287 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
794 uint64_t zfs_crc64_table[256]; variable1303 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
1172 extern uint64_t zfs_crc64_table[256];