/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/common/dist/zlib/ |
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 */
|
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...] |
zconf.h | 33 # define adler32 z_adler32 macro
|
zconf.h.in | 29 # define adler32 z_adler32 macro
|
/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
|
/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/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...] |