HomeSort by relevance Sort by last modified time
    Searched refs:CRC32 (Results 1 - 25 of 38) sorted by null

1 2

  /libcore/benchmarks/src/benchmarks/regression/
ChecksumBenchmark.java 23 import java.util.zip.CRC32;
41 CRC32 crc = new CRC32();
47 CRC32 crc = new CRC32();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
CRC32Test.java 19 import java.util.zip.CRC32;
24 * @tests java.util.zip.CRC32#CRC32()
27 // test methods of java.util.zip.CRC32()
28 CRC32 crc = new CRC32();
29 assertEquals("Constructor of CRC32 failed", 0, crc.getValue());
33 * @tests java.util.zip.CRC32#getValue()
36 // test methods of java.util.zip.crc32.getValue()
37 CRC32 crc = new CRC32()
    [all...]
CheckedInputStreamTest.java 24 import java.util.zip.CRC32;
49 CheckedInputStream checkIn = new CheckedInputStream(checkInput, new CRC32());
64 CheckedInputStream checkEmpty = new CheckedInputStream(inEmp, new CRC32());
73 CheckedInputStream checkIn = new CheckedInputStream(checkInput, new CRC32());
83 CheckedInputStream checkIn2 = new CheckedInputStream(checkInput, new CRC32());
98 CheckedInputStream checkIn = new CheckedInputStream(checkInput, new CRC32());
116 new CRC32());
133 new CRC32());
CheckedOutputStreamTest.java 23 import java.util.zip.CRC32;
37 new CRC32());
90 new CRC32());
114 new CRC32());
ZipOutputStreamTest.java 24 import java.util.zip.CRC32;
160 CRC32 tempCrc = new CRC32();
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 24 import java.util.zip.CRC32;
40 Checksum crc = new CRC32();
  /libcore/luni/src/main/native/
java_util_zip_CRC32.cpp 18 #define LOG_TAG "CRC32"
31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
36 return crc32(crc, reinterpret_cast<const Bytef*>(&val), 1);
40 NATIVE_METHOD(CRC32, updateImpl, "([BIIJ)J"),
41 NATIVE_METHOD(CRC32, updateByteImpl, "(BJ)J"),
44 jniRegisterNativeMethods(env, "java/util/zip/CRC32", gMethods, NELEM(gMethods));
  /external/chromium_org/third_party/zlib/contrib/minizip/
crypt.h 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
50 (*(pkeys+0)) = CRC32((*(pkeys+0)), c);
55 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
  /external/zlib/src/contrib/minizip/
crypt.h 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
50 (*(pkeys+0)) = CRC32((*(pkeys+0)), c);
55 (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 22 import java.util.zip.CRC32;
25 * tests for CRC32 and Adler32 checksum algorithms.
56 CRC32 crc = new CRC32();
ZipFileTest.java 29 import java.util.zip.CRC32;
135 CRC32 crc = new CRC32();
251 CRC32 crc = new CRC32();
451 // setCrc takes a long, not an int, so -1 isn't a valid CRC32 (because it's 64 bits).
457 // You can set the CRC32 to 0xffffffff if you're slightly more careful though...
  /libcore/luni/src/main/java/java/util/zip/
CRC32.java 23 * The CRC32 class is used to compute a CRC32 checksum from data provided as
26 public class CRC32 implements Checksum {
33 * Returns the CRC32 checksum for all input received.
42 * Resets the CRC32 checksum to it initial state.
70 * Update this {@code CRC32} checksum with the contents of {@code buf},
GZIPOutputStream.java 47 protected CRC32 crc = new CRC32();
GZIPInputStream.java 64 protected CRC32 crc = new CRC32();
ZipInputStream.java 87 private final CRC32 crc = new CRC32();
ZipOutputStream.java 86 private final CRC32 crc = new CRC32();
  /packages/apps/Launcher3/util/com/android/launcher3/
DecoderRing.java 37 import java.util.zip.CRC32;
140 CRC32 checksum = new CRC32();
193 CRC32 checksum = new CRC32();
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 29 import java.util.zip.CRC32;
45 assertReadsFailWithNullPointerException(new CheckedInputStream(null, new CRC32()));
  /frameworks/base/core/java/android/os/
FileUtils.java 40 import java.util.zip.CRC32;
298 * Computes the checksum of a file using the CRC32 checksum routine.
305 CRC32 checkSummer = new CRC32();
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 37 import java.util.zip.CRC32;
186 // Read the given file from backup to a file, calculating a CRC32 along the way
191 CRC32 crc = new CRC32();
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 29 import java.util.zip.CRC32;
135 CRC32 checkSummer = new CRC32();
  /external/lzma/Asm/x86/
7zCrcOpt.asm 1 ; 7zCrcOpt.asm -- CRC32 calculation : optimized version
  /external/zlib/src/as400/
compile.clp 56 CHGVAR VAR(&CMD) VALUE(&FIXDCMD *TCAT 'CRC32)')
100 &MODLIB/CRC32 &MODLIB/DEFLATE +
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherBackupHelper.java 63 import java.util.zip.CRC32;
709 CRC32 checksum = new CRC32();
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java 36 import java.util.zip.CRC32;
    [all...]

Completed in 1716 milliseconds

1 2