Lines Matching refs:crc_table
80 local unsigned long FAR crc_table[TBLS][256];
136 crc_table[0][n] = c;
143 c = crc_table[0][n];
144 crc_table[4][n] = REV(c);
146 c = crc_table[0][c & 0xff] ^ (c >> 8);
147 crc_table[k][n] = c;
148 crc_table[k + 4][n] = REV(c);
171 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
172 write_table(out, crc_table[0]);
177 write_table(out, crc_table[k]);
216 return (const unsigned long FAR *)crc_table;
220 #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
262 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
263 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
278 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
294 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
302 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
303 crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
318 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
336 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);