Lines Matching refs:crc_table
77 local unsigned long FAR crc_table[TBLS][256];
133 crc_table[0][n] = c;
140 c = crc_table[0][n];
141 crc_table[4][n] = REV(c);
143 c = crc_table[0][c & 0xff] ^ (c >> 8);
144 crc_table[k][n] = c;
145 crc_table[k + 4][n] = REV(c);
168 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
169 write_table(out, crc_table[0]);
174 write_table(out, crc_table[k]);
213 return (const unsigned long FAR *)crc_table;
217 #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
259 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
260 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
275 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
291 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
299 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
300 crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
315 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
333 c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);