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

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c99 local unsigned long FAR crc_table[TBLS][256]; variable
155 crc_table[0][n] = c;
162 c = crc_table[0][n];
163 crc_table[4][n] = REV(c);
165 c = crc_table[0][c & 0xff] ^ (c >> 8);
166 crc_table[k][n] = c;
167 crc_table[k + 4][n] = REV(c);
190 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
191 write_table(out, crc_table[0]);
196 write_table(out, crc_table[
[all...]
H A Dcrc32.h29 local const unsigned long FAR crc_table[TBLS][256] = variable
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java753 private static final int[] crc_table = new int[256]; field in class:PNGImageDecoder
764 crc_table[n] = c;
776 c = crc_table[(c ^ buf[offset++]) & 0xff] ^ (c >>> 8);

Completed in 44 milliseconds