Searched defs:crc32 (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzcrc32.c25 /* crc32.c -- compute the CRC-32 of a data stream
43 one thread to use crc32().
181 /* write out CRC tables to crc32.h */
185 out = fopen("crc32.h", "w");
187 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
188 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
223 #include "crc32.h"
227 * This function can be used by asm versions of crc32()
243 uLong ZEXPORT crc32(crc, buf, len) function
H A Dzconf.h69 # define crc32 z_crc32 macro
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A Dcrc32.java29 // crc32.java
36 public final class crc32 extends MessageDigestSpi implements Cloneable { class in inherits:MessageDigestSpi,Cloneable
43 public crc32() { method in class:crc32
49 crc32 crc = (crc32)super.clone();
263 System.out.println(">>>crc32: " + Integer.toHexString(temp));
264 System.out.println(">>>crc32: " + Integer.toBinaryString(temp));
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DTimezone.java94 private int crc32; field in class:Timezone
191 * @return the checksum (crc32) value of the trasition table
194 return crc32;
360 * the value to <code>crc32</code>.
364 crc32 = 0;
375 crc32 = (int)sum.getValue();
/openjdk7/jdk/test/java/util/zip/
H A Dzip.java48 CRC32 crc32 = new CRC32(); field in class:zip
458 crc32.reset();
464 crc32.update(buf, 0, r);
471 e.setCrc(crc32.getValue());

Completed in 59 milliseconds