Searched refs:lzma_crc32_table (Results 1 - 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/xz/src/liblzma/check/
H A Dcrc32_fast.c39 crc = lzma_crc32_table[0][*buf++ ^ A(crc)] ^ S8(crc);
55 crc = lzma_crc32_table[7][A(crc)]
56 ^ lzma_crc32_table[6][B(crc)]
57 ^ lzma_crc32_table[5][C(crc)]
58 ^ lzma_crc32_table[4][D(crc)];
66 crc = lzma_crc32_table[3][A(tmp)]
67 ^ lzma_crc32_table[2][B(tmp)]
69 ^ lzma_crc32_table[1][C(tmp)]
70 ^ lzma_crc32_table[0][D(tmp)];
75 crc = lzma_crc32_table[
[all...]
H A Dcrc32_small.c16 uint32_t lzma_crc32_table[1][256]; variable
33 lzma_crc32_table[0][b] = r;
56 crc = lzma_crc32_table[0][*buf++ ^ (crc & 0xFF)] ^ (crc >> 8);
H A Dcheck.h99 /// lzma_crc32_table[0] is needed by LZ encoder so we need to keep
102 extern uint32_t lzma_crc32_table[1][256];
105 extern const uint32_t lzma_crc32_table[8][256];
H A Dcrc32_x86.S17 * This code needs lzma_crc32_table, which can be created using the
20 uint32_t lzma_crc32_table[8][256];
36 uint32_t r = s == 0 ? b : lzma_crc32_table[s - 1][b];
45 lzma_crc32_table[s][b] = r;
64 #define LZMA_CRC32_TABLE MAKE_SYM(__USER_LABEL_PREFIX__, lzma_crc32_table)
91 * %ebx lzma_crc32_table
105 * Store the address of lzma_crc32_table to %ebx. This is needed to
H A Dcrc32_table_be.h3 const uint32_t lzma_crc32_table[8][256] = { variable
H A Dcrc32_table_le.h3 const uint32_t lzma_crc32_table[8][256] = { variable
/freebsd-10-stable/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_hash.h24 # define hash_table lzma_crc32_table[0]

Completed in 96 milliseconds