Lines Matching defs:crc_table
81 local crc_table_t FAR crc_table[TBLS][256];
137 crc_table[0][n] = c;
144 c = crc_table[0][n];
145 crc_table[4][n] = REV(c);
147 c = crc_table[0][c & 0xff] ^ (c >> 8);
148 crc_table[k][n] = c;
149 crc_table[k + 4][n] = REV(c);
172 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
173 write_table(out, crc_table[0]);
178 write_table(out, crc_table[k]);
218 return (const unsigned long FAR *)crc_table;
222 #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
264 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
265 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
280 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
296 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
304 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
305 crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
320 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
338 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);