Searched refs:adler32 (Results 1 - 25 of 78) sorted by relevance

1234

/external/chromium_org/sdch/open-vcdiff/src/
H A Dchecksum.h16 // A wrapper for the adler32() function from zlib. This can be replaced
33 return adler32(kNoPartialChecksum,
41 return adler32(partial_checksum,
/external/zlib/src/watcom/
H A Dwatcom_l.mak7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
28 wlib -b -c $(ZLIB_LIB) -+adler32.obj -+compress.obj -+crc32.obj
H A Dwatcom_f.mak7 C_SOURCE = adler32.c compress.c crc32.c deflate.c &
12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
28 wlib -b -c $(ZLIB_LIB) -+adler32.obj -+compress.obj -+crc32.obj
/external/zopfli/src/zopfli/
H A Dzlib_container.c28 /* 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);
/external/libpng/contrib/tools/
H A Dchecksum-icc.c11 * Generate crc32 and adler32 checksums of the given input files, used to
22 uLong a32 = adler32(0, NULL, 0);
39 a32 = adler32(a32, &b, 1);
68 printf("/* adler32, crc32, MD5[16], intent, date, length, file-name */\n");
/external/zlib/src/contrib/delphi/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
33 adler32.obj: adler32.c zlib.h zconf.h
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DChecksumImpl.cs160 private static extern uint adler32(uint adler, int data, uint length); method in class:DotZLib.AdlerChecksum
191 _current = adler32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count);
/external/zlib/src/contrib/pascal/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
23 OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
33 adler32.obj: adler32.c zlib.h zconf.h
H A Dzlibpas.pas45 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
/external/freetype/src/gzip/
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
21 ZEXPORT(uLong) adler32( /* adler, buf, len) */
H A Dzlib.h85 uLong adler; /* adler32 value of the uncompressed data */
258 deflate() sets strm->adler to the adler32 checksum of all input read
356 below), inflate sets strm-adler to the adler32 checksum of the
358 it sets strm->adler to the adler32 checksum of all output produced
361 checks that its computed adler32 checksum is equal to that saved by the
369 adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
775 ZEXTERN(uLong) adler32 OF((uLong adler, const Bytef *buf, uInt len));
784 uLong adler = adler32(0L, Z_NULL, 0);
787 adler = adler32(adler, buffer, length);
H A Dzconf.h35 # define adler32 z_adler32 macro
/external/libpng/contrib/pngminim/decoder/
H A Dmakefile32 ZSRCS = adler32$(C) crc32$(C) \
49 ZOBJS = adler32$(O) crc32$(O) \
/external/libpng/contrib/pngminim/encoder/
H A Dmakefile31 ZSRCS = adler32$(C) compress$(C) crc32$(C) deflate$(C) \
50 ZOBJS = adler32$(O) compress$(O) crc32$(O) deflate$(O) \
/external/libpng/contrib/pngminim/preader/
H A Dmakefile48 ZSRCS = adler32$(C) crc32$(C) \
65 ZOBJS = adler32$(O) crc32$(O) \
/external/zlib/
H A DAndroid.mk9 src/adler32.c \
/external/valgrind/main/auxprogs/
H A Dvalgrind-di-server.c229 UInt adler32( UInt adler, const UChar* buf, UInt len ) function
679 UChar rd_first8[8]; // adler32; length32
700 UInt adler = adler32(0, NULL, 0); // initial value
701 adler = adler32(adler, &rd_first8[4], 4);
703 adler = adler32(adler, req->data, req->n_data);
868 adler = adler32(0, NULL, 0);
873 adler = adler32(adler, &wr_first8[4], 4);
875 adler = adler32(adler, res->data, res->n_data);
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
59 The adler32 code below computes, in effect,
74 NOTE: If adler32() is changed in ANY way, be absolutely sure that the
97 uLong ZEXPORT adler32(adler, buf, len) function
H A Dzconf.h41 # define adler32 z_adler32 macro
/external/chromium_org/third_party/zlib/
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
60 uLong ZEXPORT adler32(adler, buf, len) function
H A Dmozzconf.h90 #define adler32 MOZ_Z_adler32 macro
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_adler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
65 uLong ZEXPORT adler32( function
145 /* for negative len, return invalid adler32 as a clue for debugging */
/external/qemu/distrib/zlib-1.2.8/
H A Dadler32.c0 /* 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/tcpdump/
H A DsctpHeader.h66 u_int32_t adler32; member in struct:sctpHeader
/external/zlib/src/
H A Dadler32.c0 /* 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 */

Completed in 495 milliseconds

1234