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

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/
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.
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
28 uLongf *destLen;
41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
57 *destLen = stream.total_out;
H A Dzlib.h1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1013 the byte length of the source buffer. Upon entry, destLen is the total
1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1030 length of the source buffer. Upon entry, destLen is the total size of the
1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1047 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1051 the byte length of the source buffer. Upon entry, destLen is the total
1056 Upon exit, destLen is the actual size of the compressed buffer.
H A Ddeflate.c494 uLong destLen; local
497 destLen = sourceLen +
502 return destLen;
507 return destLen;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/
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.
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
28 uLongf *destLen;
41 stream.avail_out = (uInt)*destLen;
42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
57 *destLen = stream.total_out;
H A Dzlib.h1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1013 the byte length of the source buffer. Upon entry, destLen is the total
1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1030 length of the source buffer. Upon entry, destLen is the total size of the
1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1047 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1051 the byte length of the source buffer. Upon entry, destLen is the total
1056 Upon exit, destLen is the actual size of the compressed buffer.
H A Ddeflate.c494 uLong destLen; local
497 destLen = sourceLen +
502 return destLen;
507 return destLen;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/comp/
H A Dc_zlib.c32 static int zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
65 static int stub_compress(Bytef *dest,uLongf *destLen,
73 typedef int (Z_CALLCONV *compress_ft)(Bytef *dest,uLongf *destLen,
151 static int zz_uncompress (Bytef *dest, uLongf *destLen, const Bytef *source, argument
163 stream.avail_out = (uInt)*destLen;
164 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
177 *destLen = stream.total_out;
236 stub_compress(Bytef *dest,uLongf *destLen,const Bytef *source, uLong sourceLen) argument
239 return(p_compress(dest,destLen,source,sourceLen));
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/tools/misc/lzma_src/C/
H A DLzmaEnc.h54 SRes LzmaEnc_MemEncode(CLzmaEncHandle p, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen,
68 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.c849 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) argument
851 SizeT outSize = *destLen;
853 *srcLen = *destLen = 0;
881 *destLen += outSizeCur;
978 SRes LzmaDecode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, argument
985 SizeT outSize = *destLen;
986 *srcLen = *destLen = 0;
1005 (*destLen) = p.dicPos;
H A DLzmaEnc.c2138 Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize)
2147 outStream.rem = *destLen;
2164 *destLen -= outStream.rem;
2234 SRes LzmaEnc_MemEncode(CLzmaEncHandle pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2246 outStream.rem = *destLen;
2253 *destLen -= outStream.rem;
2259 SRes LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, argument
2273 res = LzmaEnc_MemEncode(p, dest, destLen, src, srcLen,
2137 LzmaEnc_CodeOneMemBlock(CLzmaEncHandle pp, Bool reInit, Byte *dest, size_t *destLen, UInt32 desiredPackSize, UInt32 *unpackSize) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c58 static int zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
98 typedef int (*compress_ft)(Bytef *dest,uLongf *destLen,
305 static int zz_uncompress (Bytef *dest, uLongf *destLen, const Bytef *source,
317 stream.avail_out = (uInt)*destLen;
318 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
332 *destLen = stream.total_out;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/bzip2/
H A Dbzlib.h206 unsigned int* destLen,
216 unsigned int* destLen,
H A Dbzlib.c1249 unsigned int* destLen,
1259 if (dest == NULL || destLen == NULL ||
1277 strm.avail_out = *destLen;
1284 *destLen -= strm.avail_out;
1301 unsigned int* destLen,
1310 if (dest == NULL || destLen == NULL ||
1325 strm.avail_out = *destLen;
1332 *destLen -= strm.avail_out;
1247 BZ2_bzBuffToBuffCompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor ) argument
1299 BZ2_bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/common/
H A Dzlib.h831 extern int EXPORT compress OF((Bytef *dest, uLongf *destLen,
835 the byte length of the source buffer. Upon entry, destLen is the total
837 sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
846 extern int EXPORT uncompress OF((Bytef *dest, uLongf *destLen,
850 the byte length of the source buffer. Upon entry, destLen is the total
855 Upon exit, destLen is the actual size of the compressed buffer.
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/shared/
H A Dload.c215 decompressLZMA(unsigned char *src, unsigned int srcLen, unsigned char *dest, unsigned int destLen) argument
226 outSize = destLen;
H A Dbzip2_inflate.c607 unsigned int* destLen,
617 unsigned int* destLen,
1031 unsigned int* destLen,
1040 if (dest == NULL || destLen == NULL ||
1055 strm.avail_out = *destLen;
1062 *destLen -= strm.avail_out;
1029 BZ2_bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas115 function compress(dest: PChar; var destLen: LongInt;
117 function compress2(dest: PChar; var destLen: LongInt;
121 function uncompress(dest: PChar; var destLen: LongInt;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas115 function compress(dest: PChar; var destLen: LongInt;
117 function compress2(dest: PChar; var destLen: LongInt;
121 function uncompress(dest: PChar; var destLen: LongInt;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/as400/
H A Dzlib.inc105 D destLen 10U 0 Destination length
111 D destLen 10U 0 Destination length
121 D destLen 10U 0 Destination length
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/as400/
H A Dzlib.inc105 D destLen 10U 0 Destination length
111 D destLen 10U 0 Destination length
121 D destLen 10U 0 Destination length

Completed in 322 milliseconds