Searched refs:crc32 (Results 1 - 7 of 7) sorted by relevance
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/ |
H A D | ByteCodeEnhancerHelper.java | 129 CRC32 crc32 = new CRC32 (); 151 modifyZipEntry (out_entry, bytes, crc32); 238 * @param crc32 The checksum evaluator. 243 CRC32 crc32) 249 crc32.reset (); 250 crc32.update (bytes); 251 entry.setCrc (crc32.getValue ()); 241 modifyZipEntry(ZipEntry entry, byte [] bytes, CRC32 crc32) argument
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
H A D | Make_vms.com | 34 $ CALL MAKE crc32.OBJ "CC ''CCOPT' crc32" - 35 crc32.c zlib.h zconf.h
|
H A D | zconf.h | 36 # define crc32 z_crc32 macro
|
H A D | gzio.c | 46 uLong crc; /* crc32 of uncompressed data */ 99 s->crc = crc32(0L, Z_NULL, 0); 413 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); 432 s->crc = crc32(0L, Z_NULL, 0); 438 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start)); 511 s->crc = crc32(s->crc, (const Bytef *)buf, len); 751 s->crc = crc32(0L, Z_NULL, 0);
|
H A D | crc32.c | 0 /* crc32.c -- compute the CRC-32 of a data stream 124 * This function can be used by asm versions of crc32() 141 uLong ZEXPORT crc32(crc, buf, len) function
|
H A D | zcrc32.c | 11 /* crc32.c -- compute the CRC-32 of a data stream 134 * This function can be used by asm versions of crc32() 151 uLong ZEXPORT crc32(crc, buf, len) function
|
H A D | zlib.h | 838 ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); 846 uLong crc = crc32(0L, Z_NULL, 0); 849 crc = crc32(crc, buffer, length);
|
Completed in 36 milliseconds