Searched refs:destLen (Results 1 - 4 of 4) sorted by relevance

/xnu-2422.115.4/libkern/zlib/
H A Dcompress.c45 length of the source buffer. Upon entry, destLen is the total size of the
47 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
53 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
55 uLongf *destLen;
70 stream.avail_out = (uInt)*destLen;
71 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
85 *destLen = stream.total_out;
93 int ZEXPORT compress (dest, destLen, source, sourceLen)
95 uLongf *destLen;
99 return compress2(dest, destLen, sourc
[all...]
H A Duncompr.c44 the byte length of the source buffer. Upon entry, destLen is the total
49 Upon exit, destLen is the actual size of the compressed buffer.
57 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
59 uLongf *destLen;
72 stream.avail_out = (uInt)*destLen;
73 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
88 *destLen = stream.total_out;
H A Ddeflate.c523 uLong destLen; local
526 destLen = sourceLen +
531 return destLen;
536 return destLen;
/xnu-2422.115.4/libkern/libkern/
H A Dzlib.h1038 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1042 the byte length of the source buffer. Upon entry, destLen is the total
1044 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1053 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1059 length of the source buffer. Upon entry, destLen is the total size of the
1061 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1076 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1080 the byte length of the source buffer. Upon entry, destLen is the total
1085 Upon exit, destLen is the actual size of the compressed buffer.

Completed in 29 milliseconds