Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/xz/src/liblzma/check/
Dcrc64_tablegen.c20 static uint64_t crc64_table[4][256]; variable
30 uint64_t r = s == 0 ? b : crc64_table[s - 1][b]; in init_crc64_table()
39 crc64_table[s][b] = r; in init_crc64_table()
46 crc64_table[s][b] = bswap64(crc64_table[s][b]); in init_crc64_table()
66 crc64_table[s][b]); in print_crc64_table()
Dcrc64_small.c16 static uint64_t crc64_table[256]; variable
33 crc64_table[b] = r; in crc64_init()
48 crc = crc64_table[*buf++ ^ (crc & 0xFF)] ^ (crc >> 8); in lzma_crc64()
/freebsd-9-stable/lib/liblzma/
DMakefile76 crc64_table.c \