Searched refs:sourceLen (Results 1 - 18 of 18) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/
H A Dcompress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
15 destination buffer, which must be at least 0.1% larger than sourceLen plus
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
26 uLong sourceLen;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
66 uLong sourceLen;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
75 uLong ZEXPORT compressBound (sourceLen)
[all...]
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
30 uLong sourceLen;
36 stream.avail_in = (uInt)sourceLen;
38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
H A Dzlib.h645 uLong sourceLen));
648 deflation of sourceLen bytes. It must be called after deflateInit()
1010 const Bytef *source, uLong sourceLen));
1012 Compresses the source buffer into the destination buffer. sourceLen is
1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1025 const Bytef *source, uLong sourceLen,
1029 parameter has the same meaning as in deflateInit. sourceLen is the byte
1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1040 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1043 compress() or compress2() on sourceLen byte
[all...]
H A Ddeflate.c489 uLong ZEXPORT deflateBound(strm, sourceLen)
491 uLong sourceLen;
497 destLen = sourceLen +
498 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11;
510 return compressBound(sourceLen);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/
H A Dcompress.c13 parameter has the same meaning as in deflateInit. sourceLen is the byte
15 destination buffer, which must be at least 0.1% larger than sourceLen plus
22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
26 uLong sourceLen;
33 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
66 uLong sourceLen;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
75 uLong ZEXPORT compressBound (sourceLen)
[all...]
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
30 uLong sourceLen;
36 stream.avail_in = (uInt)sourceLen;
38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
H A Dzlib.h645 uLong sourceLen));
648 deflation of sourceLen bytes. It must be called after deflateInit()
1010 const Bytef *source, uLong sourceLen));
1012 Compresses the source buffer into the destination buffer. sourceLen is
1015 by compressBound(sourceLen). Upon exit, destLen is the actual size of the
1025 const Bytef *source, uLong sourceLen,
1029 parameter has the same meaning as in deflateInit. sourceLen is the byte
1032 compressBound(sourceLen). Upon exit, destLen is the actual size of the
1040 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1043 compress() or compress2() on sourceLen byte
[all...]
H A Ddeflate.c489 uLong ZEXPORT deflateBound(strm, sourceLen)
491 uLong sourceLen;
497 destLen = sourceLen +
498 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11;
510 return compressBound(sourceLen);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/comp/
H A Dc_zlib.c33 uLong sourceLen);
66 const Bytef *source, uLong sourceLen);
74 const Bytef *source, uLong sourceLen);
152 uLong sourceLen)
158 stream.avail_in = (uInt)sourceLen;
160 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
236 stub_compress(Bytef *dest,uLongf *destLen,const Bytef *source, uLong sourceLen) argument
239 return(p_compress(dest,destLen,source,sourceLen));
151 zz_uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c59 uLong sourceLen);
99 const Bytef *source, uLong sourceLen);
306 uLong sourceLen)
312 stream.avail_in = (uInt)sourceLen;
314 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/bzip2/
H A Dbzlib.h208 unsigned int sourceLen,
218 unsigned int sourceLen,
H A Dbzlib.c1251 unsigned int sourceLen,
1276 strm.avail_in = sourceLen;
1303 unsigned int sourceLen,
1324 strm.avail_in = sourceLen;
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/timemachine/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas99 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt;
116 const source: PChar; sourceLen: LongInt): Integer;
118 const source: PChar; sourceLen: LongInt;
120 function compressBound(sourceLen: LongInt): LongInt;
122 const source: PChar; sourceLen: LongInt): Integer;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/contrib/pascal/
H A Dzlibpas.pas99 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt;
116 const source: PChar; sourceLen: LongInt): Integer;
118 const source: PChar; sourceLen: LongInt;
120 function compressBound(sourceLen: LongInt): LongInt;
122 const source: PChar; sourceLen: LongInt): Integer;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/common/
H A Dzlib.h832 const Bytef *source, uLong sourceLen));
834 Compresses the source buffer into the destination buffer. sourceLen is
837 sourceLen plus 12 bytes. Upon exit, destLen is the actual size of the
847 const Bytef *source, uLong sourceLen));
849 Decompresses the source buffer into the destination buffer. sourceLen is
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/as400/
H A Dzlib.inc107 D sourceLen 10u 0 value Source length
113 D sourceLen 10U 0 value Source length
117 D sourceLen 10U 0 value
123 D sourceLen 10U 0 value Source length
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/as400/
H A Dzlib.inc107 D sourceLen 10u 0 value Source length
113 D sourceLen 10U 0 value Source length
117 D sourceLen 10U 0 value
123 D sourceLen 10U 0 value Source length
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/shared/
H A Dbzip2_inflate.c609 unsigned int sourceLen,
619 unsigned int sourceLen,
1033 unsigned int sourceLen,
1054 strm.avail_in = sourceLen;
1029 BZ2_bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument

Completed in 676 milliseconds