Searched refs:lzma_crc64_table (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/xz/src/liblzma/check/
H A Dcrc64_table.c16 extern const uint64_t lzma_crc64_table[4][256];
H A Dcrc64_fast.c40 crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
56 crc = lzma_crc64_table[3][A(tmp)]
57 ^ lzma_crc64_table[2][B(tmp)]
59 ^ lzma_crc64_table[1][C(tmp)]
60 ^ lzma_crc64_table[0][D(tmp)];
65 crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
H A Dcheck.h106 extern const uint64_t lzma_crc64_table[4][256];
H A Dcrc64_x86.S13 * This code needs lzma_crc64_table, which can be created using the
16 uint64_t lzma_crc64_table[4][256];
26 uint64_t r = s == 0 ? b : lzma_crc64_table[s - 1][b];
35 lzma_crc64_table[s][b] = r;
54 #define LZMA_CRC64_TABLE MAKE_SYM(__USER_LABEL_PREFIX__, lzma_crc64_table)
82 * %ebx lzma_crc64_table
96 * Store the address of lzma_crc64_table to %ebx. This is needed to
H A Dcrc64_table_be.h3 const uint64_t lzma_crc64_table[4][256] = { variable
H A Dcrc64_table_le.h3 const uint64_t lzma_crc64_table[4][256] = { variable

Completed in 65 milliseconds