HomeSort by relevance Sort by last modified time
    Searched defs:adler32 (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32_test.go 5 package adler32 package
adler32.go 5 // Package adler32 implements the Adler-32 checksum.
13 package adler32 package
67 return errors.New("hash/adler32: invalid hash state identifier")
70 return errors.New("hash/adler32: invalid hash state size")
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32_test.go 5 package adler32 package
adler32.go 5 // Package adler32 implements the Adler-32 checksum.
13 package adler32 package
67 return errors.New("hash/adler32: invalid hash state identifier")
70 return errors.New("hash/adler32: invalid hash state size")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
57 uLong ZEXPORT adler32(adler, buf, len) function
zconf.h 41 # define adler32 z_adler32 macro
zconf.in.h 41 # define adler32 z_adler32 macro
  /external/zopfli/src/zopfli/
zlib_container.c 28 /* Calculates the adler32 checksum of the data */
29 static unsigned adler32(const unsigned char* data, size_t size) function
54 unsigned checksum = adler32(in, (unsigned)insize);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
65 uLong ZEXPORT adler32(adler, buf, len) function
145 /* for negative len, return invalid adler32 as a clue for debugging */
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
134 uLong ZEXPORT adler32(adler, buf, len) function
152 /* for negative len, return invalid adler32 as a clue for debugging */
  /external/python/cpython2/Modules/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
65 uLong ZEXPORT adler32(adler, buf, len) function
145 /* for negative len, return invalid adler32 as a clue for debugging */
  /external/python/cpython3/Modules/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
134 uLong ZEXPORT adler32(adler, buf, len) function
152 /* for negative len, return invalid adler32 as a clue for debugging */
  /external/syslinux/com32/lib/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
60 uLong ZEXPORT adler32(adler, buf, len) function
zconf.in.h 38 # define adler32 z_adler32 macro
  /external/zlib/src/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
134 uLong ZEXPORT adler32(adler, buf, len) function
152 /* for negative len, return invalid adler32 as a clue for debugging */
  /toolchain/binutils/binutils-2.27/zlib/
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
6 /* @(#) $Id: adler32.c,v 1.1.1.2 2002/03/11 21:53:23 tromey Exp $ */
65 uLong ZEXPORT adler32(adler, buf, len) function
145 /* for negative len, return invalid adler32 as a clue for debugging */
  /external/guava/guava-tests/test/com/google/common/hash/
HashFunctionEnum.java 25 ADLER32(Hashing.adler32()),
  /external/freetype/src/gzip/
ftzconf.h 35 # define adler32 z_adler32 macro
  /external/zlib/src/contrib/delphi/
ZLib.pas 40 adler: Longint; // adler32 value of the uncompressed data
200 {$L adler32.obj}
212 procedure adler32; external; procedure
  /external/zlib/src/contrib/pascal/
zlibpas.pas 45 adler: LongInt; (* adler32 value of the uncompressed data *)
154 function adler32(adler: LongInt; const buf: PChar; len: Integer): LongInt; function
176 {$L adler32.obj}
188 function adler32; external; function
  /libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java 20 import java.util.zip.Adler32;
61 // 3. ...and that dictionary has the same Adler32 as the dictionary we used.
62 assertEquals(adler32(dictionary), inflater.getAdler()); method
130 private static int adler32(byte[] bytes) { method in class:InflaterTest
131 Adler32 adler32 = new Adler32(); local
132 adler32.update(bytes);
133 return (int) adler32.getValue();
  /toolchain/binutils/binutils-2.27/zlib/contrib/delphi/
ZLib.pas 40 adler: Longint; // adler32 value of the uncompressed data
200 {$L adler32.obj}
212 procedure adler32; external; procedure
  /toolchain/binutils/binutils-2.27/zlib/contrib/pascal/
zlibpas.pas 45 adler: LongInt; (* adler32 value of the uncompressed data *)
154 function adler32(adler: LongInt; const buf: PChar; len: Integer): LongInt; function
176 {$L adler32.obj}
188 function adler32; external; function
  /development/ndk/platforms/android-14/include/
zconf.h 41 # define adler32 z_adler32 macro
  /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();

Completed in 421 milliseconds

1 2 3 4 5 6 7 8