Searched refs:adler32 (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libsa/libsa/
H A Dmkext.h35 u_int32_t adler32; member in struct:mkext_header
51 adler32(u_int8_t *src, int32_t length);
/macosx-10.5.8/xnu-1228.15.4/libkern/libkern/
H A Dzlib.h163 uLong adler; /* adler32 value of the uncompressed data */
332 deflate() sets strm->adler to the adler32 checksum of all input read
431 below), inflate sets strm-adler to the adler32 checksum of the
433 it sets strm->adler to the adler32 checksum of all output produced
436 checks that its computed adler32 checksum is equal to that saved by the
444 adler32 checksum), Z_STREAM_ERROR if the stream structure was inconsistent
675 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
683 uLong adler = adler32(0L, Z_NULL, 0);
686 adler = adler32(adler, buffer, length);
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dmkext.c48 adler32(uint8_t *buf, int32_t len) function
H A Dcatalogue.cpp1002 checksum = adler32(crc_address,
1006 if (OSSwapBigToHostInt32(mkext_data->adler32) != checksum) {
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c384 int noheader; /* suppress zlib header and adler32 */
911 strm->adler = adler32(strm->adler, dictionary, dictLength);
1077 /* Save the adler32 of the preset dictionary: */
1161 /* Write the zlib trailer (adler32) */
1260 * Read a new buffer from the current input stream, update the adler32
1277 strm->adler = adler32(strm->adler, strm->next_in, len);
3494 inflate_blocks_new(z, s->nowrap ? Z_NULL : adler32, (uInt)1 << w))
3659 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
5733 /* +++ adler32.c */
5734 /* adler32
5753 adler32(uLong adler, const Bytef *buf, uInt len) function
[all...]

Completed in 40 milliseconds