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

12

/asus-wl-520gu-7.0.1.45/src/cfe/cfe/zlib/
H A DMakefile2 #ALLOBJS += adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
5 #ALLOBJS += adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
8 ALLOBJS += adler32.o uncompr.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o zutil.o
11 adler32.o: zlib.h zconf.h
H A DMakefile.riscos18 @.lib: @.o.adler32 @.o.compress @.o.crc32 @.o.deflate @.o.gzio \
21 LibFile $(LibFileflags) @.o.adler32 @.o.compress @.o.crc32 @.o.deflate \
76 o.adler32: c.adler32
77 o.adler32: h.zlib
78 o.adler32: h.zconf
H A Dadler32.c0 /* adler32.c -- compute the Adler-32 checksum of a data stream
6 /* @(#) $Id: adler32.c,v 1.1.1.1 2008/10/15 03:25:54 james26_jang Exp $ */
21 uLong ZEXPORT adler32(adler, buf, len) function
H A DMake_vms.com30 $ CALL MAKE adler32.OBJ "CC ''CCOPT' adler32" -
31 adler32.c zlib.h zconf.h
H A DMakefile.in41 OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
157 adler32.o: zlib.h zconf.h
H A Dzconf.h35 # define adler32 z_adler32 macro
H A Dinflate.c124 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
288 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
H A Dzlib.h85 uLong adler; /* adler32 value of the uncompressed data */
262 deflate() sets strm->adler to the adler32 checksum of all input read
361 below), inflate sets strm-adler to the adler32 checksum of the
363 it sets strm->adler to the adler32 checksum of all output produced
366 checks that its computed adler32 checksum is equal to that saved by the
374 adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
821 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
830 uLong adler = adler32(0L, Z_NULL, 0);
833 adler = adler32(adler, buffer, length);
H A Ddeflate.c305 strm->adler = adler32(strm->adler, dictionary, dictLength);
474 /* Save the adler32 of the preset dictionary: */
558 /* Write the zlib trailer (adler32) */
656 * Read a new buffer from the current input stream, update the adler32
675 strm->adler = adler32(strm->adler, strm->next_in, len);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/boot/include/
H A Dzlib.h412 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
421 uLong adler = adler32(0L, Z_NULL, 0);
424 adler = adler32(adler, buffer, length);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc64/boot/
H A Dzlib.h411 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
420 uLong adler = adler32(0L, Z_NULL, 0);
423 adler = adler32(adler, buffer, length);
H A Dzlib.c389 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, 1 << w))
2122 /* adler32.c -- compute the Adler-32 checksum of a data stream
2127 /* From: adler32.c,v 1.6 1995/05/03 17:27:08 jloup Exp */
2140 uLong adler32(adler, buf, len) function
/asus-wl-520gu-7.0.1.45/src/router/ppp/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
619 uLong adler = adler32(0L, Z_NULL, 0);
622 adler = adler32(adler, buffer, length);
/asus-wl-520gu-7.0.1.45/src/router/pppd/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
619 uLong adler = adler32(0L, Z_NULL, 0);
622 adler = adler32(adler, buffer, length);
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
619 uLong adler = adler32(0L, Z_NULL, 0);
622 adler = adler32(adler, buffer, length);
/asus-wl-520gu-7.0.1.45/src/router/ppp/common/
H A Dzlib.h90 # define adler32 z_adler32 macro
292 uLong adler; /* adler32 value of the uncompressed data */
941 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
950 uLong adler = adler32(0L, Z_NULL, 0);
953 adler = adler32(adler, buffer, length);
H A Dzlib.c348 int noheader; /* suppress zlib header and adler32 */
838 strm->adler = adler32(strm->adler, dictionary, dictLength);
1009 /* Save the adler32 of the preset dictionary: */
1097 /* Write the zlib trailer (adler32) */
1200 * Read a new buffer from the current input stream, update the adler32
1219 strm->adler = adler32(strm->adler, strm->next_in, len);
3165 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
3333 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
5327 /* +++ adler32.c */
5328 /* adler32
5348 uLong adler32(adler, buf, len) function
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd/common/
H A Dzlib.h90 # define adler32 z_adler32 macro
292 uLong adler; /* adler32 value of the uncompressed data */
941 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
950 uLong adler = adler32(0L, Z_NULL, 0);
953 adler = adler32(adler, buffer, length);
H A Dzlib.c348 int noheader; /* suppress zlib header and adler32 */
838 strm->adler = adler32(strm->adler, dictionary, dictLength);
1009 /* Save the adler32 of the preset dictionary: */
1097 /* Write the zlib trailer (adler32) */
1200 * Read a new buffer from the current input stream, update the adler32
1219 strm->adler = adler32(strm->adler, strm->next_in, len);
3165 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
3333 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
5330 /* +++ adler32.c */
5331 /* adler32
5351 uLong adler32(adler, buf, len) function
[all...]
/asus-wl-520gu-7.0.1.45/src/router/pppd.mppe/common/
H A Dzlib.h90 # define adler32 z_adler32 macro
292 uLong adler; /* adler32 value of the uncompressed data */
941 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
950 uLong adler = adler32(0L, Z_NULL, 0);
953 adler = adler32(adler, buffer, length);
/asus-wl-520gu-7.0.1.45/src/router/library/include/
H A Dzconf.h39 # define adler32 z_adler32 macro
H A Dzlib.h101 uLong adler; /* adler32 value of the uncompressed data */
282 deflate() sets strm->adler to the adler32 checksum of all input read
404 below), inflate sets strm-adler to the adler32 checksum of the dictionary
406 strm->adler to the adler32 checksum of all output produced so far (that is,
408 below. At the end of the stream, inflate() checks that its computed adler32
475 with no zlib header or trailer, and will not compute an adler32 check value.
531 Upon return of this function, strm->adler is set to the adler32 value
533 which dictionary has been used by the compressor. (The adler32 value
536 adler32 value is not computed and strm->adler is not set.
644 recommended that a check value such as an adler32 o
[all...]
/asus-wl-520gu-7.0.1.45/src/router/library/
H A Dzconf.h39 # define adler32 z_adler32 macro
H A Dzlib.h101 uLong adler; /* adler32 value of the uncompressed data */
282 deflate() sets strm->adler to the adler32 checksum of all input read
404 below), inflate sets strm-adler to the adler32 checksum of the dictionary
406 strm->adler to the adler32 checksum of all output produced so far (that is,
408 below. At the end of the stream, inflate() checks that its computed adler32
475 with no zlib header or trailer, and will not compute an adler32 check value.
531 Upon return of this function, strm->adler is set to the adler32 value
533 which dictionary has been used by the compressor. (The adler32 value
536 adler32 value is not computed and strm->adler is not set.
644 recommended that a check value such as an adler32 o
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ppc/boot/lib/
H A Dzlib.c369 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, 1 << w))
2109 /* adler32.c -- compute the Adler-32 checksum of a data stream
2114 /* From: adler32.c,v 1.6 1995/05/03 17:27:08 jloup Exp */
2127 uLong adler32(adler, buf, len) function

Completed in 358 milliseconds

12