Home
last modified time | relevance | path

Searched refs:zfs_crc64_table (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/cddl/boot/zfs/
H A Dzfssubr.c29 static uint64_t zfs_crc64_table[256]; variable
54 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()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzap_micro.c125 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()
H A Dzvol.c154 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()
H A Dsa.c287 #define SA_ATTR_HASH(attr) (zfs_crc64_table[(-1ULL ^ attr) & 0xFF])
H A Darc.c794 uint64_t zfs_crc64_table[256]; variable
1303 for (ct = zfs_crc64_table + i, *ct = i, j = 8; j > 0; j--) in buf_init()
/freebsd/sys/contrib/openzfs/include/sys/
H A Ddmu.h1172 extern uint64_t zfs_crc64_table[256];