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

/illumos-gate/usr/src/boot/lib/libz/
H A Dcompress.c14 length of the source buffer. Upon entry, destLen is the total size of the
16 12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
24 uLongf *destLen;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
54 *destLen = stream.total_out;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
64 uLongf *destLen;
68 return compress2(dest, destLen, sourc
[all...]
H A Duncompr.c13 the byte length of the source buffer. Upon entry, destLen is the total
18 Upon exit, destLen is the actual size of the compressed buffer.
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
26 uLongf *destLen;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
55 *destLen = stream.total_out;
H A Dzlib.h1160 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1164 the byte length of the source buffer. Upon entry, destLen is the total size
1166 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1174 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1180 length of the source buffer. Upon entry, destLen is the total size of the
1182 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1197 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1201 the byte length of the source buffer. Upon entry, destLen is the total size
1205 mechanism outside the scope of this compression library.) Upon exit, destLen
/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.h59 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
73 extern SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
H A DLzmaDec.h87 and output value of destLen will be less than output buffer size limit.
92 2) Check that output(destLen) = uncompressedSize, if you know real uncompressedSize.
189 It has meaning only if the decoding reaches output limit (*destLen).
190 LZMA_FINISH_ANY - Decode just destLen bytes.
191 LZMA_FINISH_END - Stream must be finished after (*destLen).
194 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
203 It has meaning only if the decoding reaches output limit (*destLen).
204 LZMA_FINISH_ANY - Decode just destLen bytes.
205 LZMA_FINISH_END - Stream must be finished after (*destLen).
219 SRes LzmaDecode(Byte *dest, SizeT *destLen, cons
[all...]
H A DLzmaDec.c861 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
863 SizeT outSize = *destLen;
865 *srcLen = *destLen = 0;
893 *destLen += outSizeCur;
992 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, argument
999 SizeT outSize = *destLen;
1000 *srcLen = *destLen = 0;
1019 (*destLen) = p.dicPos;
H A DLzmaEnc.c2139 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize)
2148 outStream.rem = *destLen;
2165 *destLen -= outStream.rem;
2235 SRes LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2247 outStream.rem = *destLen;
2254 *destLen -= outStream.rem;
2260 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2274 res = LzmaEnc_MemEncode(p, dest, destLen, src, srcLen,
2138 LzmaEnc_CodeOneMemBlock(CLzmaEncHandle pp, Bool reInit, Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize) argument
/illumos-gate/usr/src/common/bzip2/
H A Dbzlib.h227 unsigned int* destLen,
237 unsigned int* destLen,
H A Dbzlib.c1424 unsigned int* destLen,
1434 if (dest == NULL || destLen == NULL ||
1452 strm.avail_out = *destLen;
1459 *destLen -= strm.avail_out;
1476 unsigned int* destLen,
1485 if (dest == NULL || destLen == NULL ||
1500 strm.avail_out = *destLen;
1507 *destLen -= strm.avail_out;
1422 BZ2_bzBuffToBuffCompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor ) argument
1474 BZ2_bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument
/illumos-gate/usr/src/uts/common/zmod/
H A Dzlib.h1011 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1015 the byte length of the source buffer. Upon entry, destLen is the total
1017 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1026 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1032 length of the source buffer. Upon entry, destLen is the total size of the
1034 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1049 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1053 the byte length of the source buffer. Upon entry, destLen is the total
1058 Upon exit, destLen is the actual size of the compressed buffer.
H A Ddeflate.c500 uLong destLen; local
503 destLen = sourceLen +
508 return destLen;
513 return destLen;

Completed in 98 milliseconds