Lines Matching defs:destLen
86 * length of the source buffer. Upon entry, destLen is the total size of the
88 * 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
95 z_compress_level(void *dest, size_t *destLen, const void *source,
104 stream.avail_out = (uInt)*destLen;
106 if ((size_t)stream.avail_out != *destLen)
125 *destLen = stream.total_out;
136 * the byte length of the source buffer. Upon entry, destLen is the total
141 * Upon exit, destLen is the actual size of the compressed buffer.
150 z_uncompress(void *dest, size_t *destLen, const void *source, size_t sourceLen)
158 stream.avail_out = (uInt)*destLen;
160 if ((size_t)stream.avail_out != *destLen)
184 *destLen = stream.total_out;