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

/freebsd-10.0-release/contrib/xz/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);
/freebsd-10.0-release/lib/liblzma/
H A DMakefile76 crc64_table.c \

Completed in 81 milliseconds