Home | History | Annotate | Download | only in old

Lines Matching full:adler

28   Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler
50 <dt>Mark Adler
463 <a href="#deflate">deflate</a>() sets strm-&gt <a href="#adler">adler</a> to the <a href="#adler32">adler32</a> checksum of all input read
568 below), <a href="#inflate">inflate</a> sets strm-<a href="#adler">adler</a> to the <a href="#adler32">adler32</a> checksum of the
570 it sets strm-&gt <a href="#adler">adler</a> to the <a href="#adler32">adler32</a> checksum of all output produced
677 Upon return of this function, strm-&gt <a href="#adler">adler</a> is set to the Adler32 value
802 <li> uLong <a href="#adler32">adler32</a> (uLong <a href="#adler">adler</a>, const Bytef *buf, uInt len);
807 <font color="Blue"><dt> uLong <a name="adler32">adler32</a> (uLong <a href="#adler">adler</a>, const Bytef *buf, uInt len);</font>
809 Update a running Adler-32 checksum with the bytes buf[0..len-1] and
813 An Adler-32 checksum is almost as reliable as a CRC32 but can be computed
817 uLong <a href="#adler">adler</a> = <a href="#adler32">adler32</a>(0L, <a href="#Z_NULL">Z_NULL</a>, 0);
820 <a href="#adler">adler</a> = <a href="#adler32">adler32</a>(<a href="#adler">adler</a>, buffer, length);
822 if (<a href="#adler">adler</a> != original_adler) error();
864 uLong <a name="adler">adler</a>; /* <a href="#adler32">adler32</a> value of the uncompressed data */