Searched defs:adler (Results 1 - 2 of 2) sorted by relevance
/ast/src/lib/libz/ |
H A D | zlib.h | 99 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s 309 deflate() sets strm->adler to the adler32 checksum of all input read 431 below), inflate sets strm->adler to the adler32 checksum of the dictionary 433 strm->adler to the adler32 checksum of all output produced so far (that is, 509 gzip stream is being written, strm->adler is a crc32 instead of an adler32. 563 Upon return of this function, strm->adler is set to the adler32 value 568 adler32 value is not computed and strm->adler is not set. 725 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is 1287 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); 1295 uLong adler [all...] |
/ast/src/cmd/INIT/ |
H A D | ratz.c | 522 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s 1119 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} 1161 uLong ZEXPORT adler32(adler, buf, len) 1162 uLong adler; 1170 sum2 = (adler >> 16) & 0xffff; 1171 adler &= 0xffff; 1175 adler += buf[0]; 1176 if (adler >= BASE) 1177 adler [all...] |
Completed in 20 milliseconds