Searched defs:crc (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/
H A DCRC32.java53 static int computeCRC(int crc, byte buf[], int len) { argument
57 crc = crc ^ 0xffffffff;
59 crc = CRCTable[(crc ^ ((int) buf[bufIndex++])) & 0xff] ^ (crc >>> 8);
60 crc = CRCTable[(crc ^ ((int) buf[bufIndex++])) & 0xff] ^ (crc >>> 8);
61 crc
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dzip_util.h82 #define LOCCRC(b) LG(b, 14) /* crc of uncompressed data */
91 #define EXTCRC(b) LG(b, 4) /* crc of uncompressed data */
103 #define CENCRC(b) LG(b, 16) /* crc of uncompressed data */
135 * - jzentry time and crc fields are signed even though they really
149 jint crc; /* crc of uncompressed data */ member in struct:jzentry
169 jint crc; member in struct:jzcell
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dgzio.c46 uLong crc; /* crc32 of uncompressed data */ member in struct:gz_stream
99 s->crc = crc32(0L, Z_NULL, 0);
305 if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
360 Bytef *start = (Bytef*)buf; /* starting point for crc computation */
413 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
416 if (getLong(s) != s->crc) {
432 s->crc = crc32(0L, Z_NULL, 0);
438 s->crc = crc32(s->crc, star
[all...]

Completed in 26 milliseconds