Lines Matching defs:table
149 * Tables for byte-wise and braided CRC-32 calculations, and a table of powers
198 * Build the tables for byte-wise and braided CRC-32 calculations, and a table
312 The table is simply the CRC of all possible eight bit values. This is all the
332 /* initialize the x^2^n mod p(x) table */
362 /* write out little-endian CRC table to crc32.h */
373 /* write out big-endian CRC table for 64-bit z_word_t to crc32.h */
386 /* write out big-endian CRC table for 32-bit z_word_t to crc32.h */
465 /* write out zeros operator table to crc32.h */
481 Write the 32-bit values in table[0..k-1] to out, five per line in
484 local void write_table(FILE *out, const z_crc_t FAR *table, int k) {
489 (unsigned long)(table[n]),
494 Write the high 32-bits of each value in table[0..k-1] to out, five per line
497 local void write_table32hi(FILE *out, const z_word_t FAR *table, int k) {
502 (unsigned long)(table[n] >> 32),
507 Write the 64-bit values in table[0..k-1] to out, three per line in
513 local void write_table64(FILE *out, const z_word_t FAR *table, int k) {
518 (unsigned long long)(table[n]),