Searched refs:crc64_table (Results 1 - 3 of 3) sorted by relevance

/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/check/
H A Dcrc64_tablegen.c20 static uint64_t crc64_table[4][256]; variable
30 uint64_t r = s == 0 ? b : crc64_table[s - 1][b];
39 crc64_table[s][b] = r;
46 crc64_table[s][b] = bswap64(crc64_table[s][b]);
66 crc64_table[s][b]);
H A Dcrc64_small.c16 static uint64_t crc64_table[256]; variable
33 crc64_table[b] = r;
48 crc = crc64_table[*buf++ ^ (crc & 0xFF)] ^ (crc >> 8);
/netbsd-6-1-5-RELEASE/external/public-domain/xz/lib/
H A DMakefile43 SRCS+= check.c crc32_table.c crc64_table.c

Completed in 96 milliseconds