Searched refs:crc_table (Results 1 - 2 of 2) sorted by relevance

/vbox/src/libs/zlib-1.2.6/
H A Dcrc32.c81 local crc_table_t FAR crc_table[TBLS][256]; variable
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[
[all...]
H A Dcrc32.h5 local const crc_table_t FAR crc_table[TBLS][256] = variable

Completed in 659 milliseconds