Searched refs:adler32 (Results 1 - 7 of 7) sorted by relevance
/ast/src/lib/libz/ |
H A D | Makefile | 16 adler32.c compress.c crc32.c deflate.c gzio.c infback.c inffast.c \
|
H A D | adler32.c | 0 /* adler32.c -- compute the Adler-32 checksum of a data stream 57 uLong ZEXPORT adler32(adler, buf, len) function
|
H A D | inflate.c | 375 /* check function to use adler32() for zlib or crc32() for gzip */ 378 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 380 # define UPDATE(check, buf, len) adler32(check, buf, len) 629 strm->adler = state->check = adler32(0L, Z_NULL, 0); 771 strm->adler = state->check = adler32(0L, Z_NULL, 0); 1185 id = adler32(0L, Z_NULL, 0); 1186 id = adler32(id, dictionary, dictLength);
|
H A D | zconf.h | 58 # define adler32 z_adler32 macro
|
H A D | deflate.c | 332 strm->adler = adler32(strm->adler, dictionary, dictLength); 383 adler32(0L, Z_NULL, 0); 643 /* Save the adler32 of the preset dictionary: */ 648 strm->adler = adler32(0L, Z_NULL, 0); 950 * Read a new buffer from the current input stream, update the adler32 969 strm->adler = adler32(strm->adler, strm->next_in, len);
|
H A D | zlib.h | 99 uLong adler; /* adler32 value of the uncompressed data */ 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, 435 below. At the end of the stream, inflate() checks that its computed adler32 502 with no zlib header or trailer, and will not compute an adler32 check value. 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 565 which dictionary has been used by the compressor. (The adler32 value 568 adler32 valu [all...] |
/ast/src/cmd/INIT/ |
H A D | ratz.c | 522 uLong adler; /* adler32 value of the uncompressed data */ 1161 uLong ZEXPORT adler32(adler, buf, len) function 2594 /* check function to use adler32() for zlib or crc32() for gzip */ 2597 (state->flags ? crc32(check, buf, len) : adler32(check, buf, len)) 2599 # define UPDATE(check, buf, len) adler32(check, buf, len) 2848 strm->adler = state->check = adler32(0L, Z_NULL, 0); 2990 strm->adler = state->check = adler32(0L, Z_NULL, 0); 3404 id = adler32(0L, Z_NULL, 0); 3405 id = adler32(id, dictionary, dictLength);
|
Completed in 36 milliseconds