Lines Matching defs:table
3 * Generate lookup table for the table-driven CRC64 calculation.
7 * the table-driven CRC64 calculation.
11 * generate the lookup table.
25 static void generate_reflected_crc64_table(uint64_t table[256], uint64_t poly)
39 table[i] = crc;
43 static void generate_crc64_table(uint64_t table[256], uint64_t poly)
59 table[i] = crc;
63 static void output_table(uint64_t table[256])
68 printf("\t0x%016" PRIx64 "ULL", table[i]);