Lines Matching defs:table
142 * Tables for byte-wise and braided CRC-32 calculations, and a table of powers
191 * Build the tables for byte-wise and braided CRC-32 calculations, and a table
305 The table is simply the CRC of all possible eight bit values. This is all the
325 /* initialize the x^2^n mod p(x) table */
355 /* write out little-endian CRC table to crc32.h */
366 /* write out big-endian CRC table for 64-bit z_word_t to crc32.h */
379 /* write out big-endian CRC table for 32-bit z_word_t to crc32.h */
458 /* write out zeros operator table to crc32.h */
474 Write the 32-bit values in table[0..k-1] to out, five per line in
477 local void write_table(FILE *out, const z_crc_t FAR *table, int k) {
482 (unsigned long)(table[n]),
487 Write the high 32-bits of each value in table[0..k-1] to out, five per line
490 local void write_table32hi(FILE *out, const z_word_t FAR *table, int k) {
495 (unsigned long)(table[n] >> 32),
500 Write the 64-bit values in table[0..k-1] to out, three per line in
506 local void write_table64(FILE *out, const z_word_t FAR *table, int k) {
511 (unsigned long long)(table[n]),