HomeSort by: relevance | last modified time | path
    Searched refs:adler32 (Results 1 - 25 of 25) sorted by relevancy

  /src/common/dist/zlib/watcom/
watcom_l.mak 7 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
watcom_f.mak 7 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
  /src/distrib/utils/zcat/
Makefile 19 SRCS+= adler32.c crc32.c zutil.c inffast.c inftrees.c
  /src/sys/lib/libz/
Makefile 13 LIBZSRCS= adler32.c compress.c deflate.c infback.c inffast.c \
  /src/common/dist/zlib/contrib/delphi/
zlibd32.mak 21 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
ZLib.pas 40 adler: Longint; // adler32 value of the uncompressed data
200 {$L adler32.obj}
212 procedure adler32; external; procedure
  /src/common/dist/zlib/contrib/pascal/
zlibd32.mak 21 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
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
example.pas 35 var dictId: LongInt; (* Adler32 value of the dictionary *)
437 (* Because of incorrect adler32 *)
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
ChecksumImpl.cs 160 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);
  /src/lib/libz/
Makefile 15 SRCS= adler32.c compress.c crc32.c deflate.c infback.c inffast.c \
  /src/common/dist/zlib/
Makefile.in 56 OBJZ = adler32.o crc32.o deflate.o infback.o inffast.o inflate.o inftrees.o trees.o zutil.o
60 PIC_OBJZ = adler32.lo crc32.lo deflate.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo zutil.lo
155 adler32.o: $(SRCDIR)adler32.c
156 $(CC) $(CFLAGS) $(ZINC) -c -o $@ $(SRCDIR)adler32.c
201 adler32.lo: $(SRCDIR)adler32.c
203 $(CC) $(SFLAGS) $(ZINC) -DPIC -c -o objs/adler32.o $(SRCDIR)adler32.c
204 -@mv objs/adler32.o $
    [all...]
adler32.c 0 /* adler32.c -- compute the Adler-32 checksum of a data stream
128 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) { function in typeref:typename:uLong ZEXPORT
138 /* for negative len, return invalid adler32 as a clue for debugging */
inflate.c 418 /* check function to use adler32() for zlib or crc32() for gzip */
421 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len))
423 # define UPDATE_CHECK(check, buf, len) adler32(check, buf, len)
675 strm->adler = state->check = adler32(0L, Z_NULL, 0);
830 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1321 dictid = adler32(0L, Z_NULL, 0);
1322 dictid = adler32(dictid, dictionary, dictLength);
make_vms.com 179 $ CALL MAKE adler32.OBJ "CC ''CCOPT' adler32" -
180 adler32.c zlib.h zconf.h
429 OBJS = adler32.obj, compress.obj, crc32.obj, gzclose.obj, gzlib.obj\
456 adler32.obj : adler32.c zutil.h zlib.h zconf.h
zconf.h 33 # define adler32 z_adler32 macro
CMakeLists.txt 108 adler32.c
deflate.c 214 * Read a new buffer from the current input stream, update the adler32
230 strm->adler = adler32(strm->adler, buf, len);
569 strm->adler = adler32(strm->adler, dictionary, dictLength);
664 adler32(0L, Z_NULL, 0);
1017 /* Save the adler32 of the preset dictionary: */
1022 strm->adler = adler32(0L, Z_NULL, 0);
zconf.h.in 29 # define adler32 z_adler32 macro
zlib.h 501 gzip-wrapped deflate data, strm->adler32 is set to the CRC-32 of the output
1694 ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
1706 uLong adler = adler32(0L, Z_NULL, 0);
1709 adler = adler32(adler, buffer, length);
1717 Same as adler32(), but with a size_t length.
zconf.h.cmakein 31 # define adler32 z_adler32
  /src/sys/net/
zlib.h 84 # define adler32 z_adler32 macro
379 uLong adler; /* adler32 value of the uncompressed data */
564 deflate() sets strm->adler to the adler32 checksum of all input read
666 below), inflate sets strm-adler to the adler32 checksum of the
668 it sets strm->adler to the adler32 checksum of all output produced
671 checks that its computed adler32 checksum is equal to that saved by the
679 adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
765 Upon return of this function, strm->adler is set to the Adler32 value
767 which dictionary has been used by the compressor. (The Adler32 value
868 can be determined from the Adler32 value returned by this call o
    [all...]
zlib.c 375 int noheader; /* suppress zlib header and adler32 */
913 strm->adler = adler32(strm->adler, dictionary, dictLength);
1081 /* Save the adler32 of the preset dictionary: */
1169 /* Write the zlib trailer (adler32) */
1282 * Read a new buffer from the current input stream, update the adler32
1300 strm->adler = adler32(strm->adler, strm->next_in, len);
3479 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
3656 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
5827 /* +++ adler32.c */
5828 /* adler32.c -- compute the Adler-32 checksum of a data strea
5848 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) function in typeref:typename:uLong ZEXPORT
    [all...]
  /src/common/dist/zlib/contrib/ada/
zlib-thin.ads 236 function adler32 subprogspec
380 adler : ULong; -- adler32 value of the uncompressed
419 pragma Import (C, adler32, "adler32");
  /src/common/dist/zlib/os400/
zlib.inc 106 D zs_adler 10u 0 Uncompr. adler32 val
469 D adler32 PR 10U 0 extproc('adler32') New checksum

Completed in 29 milliseconds