Searched refs:crc64_table (Results 1 – 3 of 3) sorted by relevance
20 static uint64_t crc64_table[4][256]; variable30 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()
16 static uint64_t crc64_table[256]; variable33 crc64_table[b] = r; in crc64_init()48 crc = crc64_table[*buf++ ^ (crc & 0xFF)] ^ (crc >> 8); in lzma_crc64()
76 crc64_table.c \