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

1 2

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
Adler32Test.java 19 import java.util.zip.Adler32;
24 * java.util.zip.Adler32#Adler32()
27 // test method of java.util.zip.Adler32()
28 Adler32 adl = new Adler32();
33 * java.util.zip.Adler32#getValue()
37 Adler32 adl = new Adler32();
38 assertEquals("GetValue should return a zero as a result of construction an object of Adler32",
    [all...]
CheckedOutputStreamTest.java 22 import java.util.zip.Adler32;
60 new Adler32());
DeflaterTest.java 22 import java.util.zip.Adler32;
276 // getting the checkSum value through the Adler32 class
277 Adler32 adl = new Adler32();
281 "The checksum value returned by getAdler() is not the same as the checksum returned by creating the adler32 instance",
460 // getting the checkSum value through the Adler32 class
461 Adler32 adl = new Adler32();
472 adl = new Adler32();
502 // getting the checkSum value through the Adler32 clas
    [all...]
InflaterTest.java 24 import java.util.zip.Adler32;
103 // getting the checkSum value through the Adler32 class
104 Adler32 adl = new Adler32();
108 "the checksum value returned by getAdler() is not the same as the checksum returned by creating the adler32 instance",
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ChecksumBenchmark.java 19 import java.util.zip.Adler32;
25 Adler32 adler = new Adler32();
31 Adler32 adler = new Adler32();
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 21 import java.util.zip.Adler32;
25 * tests for CRC32 and Adler32 checksum algorithms.
41 Adler32 adler = new Adler32();
84 Adler32 adler = new Adler32();
InflaterTest.java 20 import java.util.zip.Adler32;
55 // 3. ...and that dictionary has the same Adler32 as the dictionary we used.
56 assertEquals(adler32(dictionary), inflater.getAdler()); method
120 private static int adler32(byte[] bytes) { method in class:InflaterTest
121 Adler32 adler32 = new Adler32(); local
122 adler32.update(bytes);
123 return (int) adler32.getValue();
  /external/guava/guava-tests/benchmark/com/google/common/hash/
ChecksumBenchmark.java 24 import java.util.zip.Adler32;
67 // Adler32
70 return runHashFunction(reps, Hashing.adler32());
76 Adler32 checksum = new Adler32();
89 result ^= Hashing.adler32().hashInt(reps).asBytes()[0];
  /libcore/ojluni/src/main/native/
Adler32.c 27 * Native method support for java.util.zip.Adler32
46 return adler32(adler, buf, 1);
55 adler = adler32(adler, buf + off, len);
67 adler = adler32(adler, buf + off, len);
73 NATIVE_METHOD(Adler32, update, "(II)I"),
74 NATIVE_METHOD(Adler32, updateBytes, "(I[BII)I"),
75 NATIVE_METHOD(Adler32, updateByteBuffer, "(IJII)I"),
79 jniRegisterNativeMethods(env, "java/util/zip/Adler32", gMethods, NELEM(gMethods));
openjdksub.mk 12 Adler32.c \
  /libcore/ojluni/src/main/java/java/util/zip/
Adler32.java 40 class Adler32 implements Checksum {
44 * Creates a new Adler32 object.
46 public Adler32() {
130 public void update(Adler32 adler32, ByteBuffer buf) {
131 adler32.update(buf);
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 37 import java.util.zip.Adler32;
159 Adler32 a32 = new Adler32();
  /external/google-breakpad/src/common/mac/
macho_id.h 66 // For the given |cpu_type| and |cpu_subtype|, return the Adler32 CRC for the
69 uint32_t Adler32(cpu_type_t cpu_type,
macho_id.cc 217 uint32_t MachoID::Adler32(cpu_type_t cpu_type, cpu_subtype_t cpu_subtype) {
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 37 import java.util.zip.Adler32;
635 Adler32 a32 = new Adler32();
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 37 import java.util.zip.Adler32;
652 Adler32 a32 = new Adler32();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 37 import java.util.zip.Adler32;
654 Adler32 a32 = new Adler32();
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 25 import java.util.zip.Adler32;
262 * delegating to the {@link Adler32} {@link Checksum}.
269 public static HashFunction adler32() { method in class:Hashing
275 checksumHashFunction(ChecksumType.ADLER_32, "Hashing.adler32()");
292 return new Adler32();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 78 import java.util.zip.Adler32;
125 private Adler32 mAdler32 = new Adler32();
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 390 class Adler32;
  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 68 struct Adler32 : ChecksumAlg {
69 Adler32() {
254 Adler32 adler;
  /libcore/dex/src/main/java/com/android/dex/
Dex.java 43 import java.util.zip.Adler32;
310 Adler32 adler32 = new Adler32(); local
318 adler32.update(buffer, 0, count);
320 return (int) adler32.getValue();
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java 83 import java.util.zip.Adler32;
296 Adler32 a32 = new Adler32();
    [all...]
  /external/zlib/src/contrib/pascal/
example.pas 35 var dictId: LongInt; (* Adler32 value of the dictionary *)
437 (* Because of incorrect adler32 *)
  /libcore/
openjdk_java_files.mk     [all...]

Completed in 628 milliseconds

1 2