Searched refs:sourceLen (Results 1 – 13 of 13) sorted by relevance
/minix/common/dist/zlib/ |
H A D | compress.c | 24 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument 28 uLong sourceLen; 35 stream.avail_in = (uInt)sourceLen; 38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 64 int ZEXPORT compress (dest, destLen, source, sourceLen) in compress() argument 68 uLong sourceLen; 70 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); 77 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument 78 uLong sourceLen; in compressBound() 80 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11;
|
H A D | uncompr.c | 28 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument 32 uLong sourceLen; 38 stream.avail_in = (uInt)sourceLen; 40 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
|
H A D | zlib.h | 647 uLong sourceLen)); 1012 const Bytef *source, uLong sourceLen)); 1027 const Bytef *source, uLong sourceLen, 1042 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1050 const Bytef *source, uLong sourceLen));
|
H A D | deflate.c | 491 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument 493 uLong sourceLen; 499 destLen = sourceLen + 500 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11; 512 return compressBound(sourceLen);
|
/minix/common/dist/zlib/contrib/pascal/ |
H A D | zlibpas.pas | 99 function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; in deflateBound() 116 const source: PChar; sourceLen: LongInt): Integer; 118 const source: PChar; sourceLen: LongInt; 120 function compressBound(sourceLen: LongInt): LongInt; in compressBound() 122 const source: PChar; sourceLen: LongInt): Integer;
|
/minix/external/bsd/bzip2/dist/ |
H A D | bzlib.h | 210 unsigned int sourceLen, 220 unsigned int sourceLen,
|
H A D | bzlib.c | 1253 unsigned int sourceLen, in BZ_API() 1278 strm.avail_in = sourceLen; in BZ_API() 1305 unsigned int sourceLen, in BZ_API() 1326 strm.avail_in = sourceLen; in BZ_API()
|
/minix/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
H A D | bzlib.h | 210 unsigned int sourceLen, 220 unsigned int sourceLen,
|
H A D | zlib.h | 987 uLong sourceLen)); 1352 const Bytef *source, uLong sourceLen)); 1367 const Bytef *source, uLong sourceLen, 1382 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1390 const Bytef *source, uLong sourceLen));
|
H A D | bzlib.c | 836 unsigned int sourceLen, in BZ_API() 857 strm.avail_in = sourceLen; in BZ_API()
|
/minix/common/dist/zlib/contrib/ada/ |
H A D | zlib-thin.ads | 164 sourceLen : ULong) 171 sourceLen : ULong; 179 sourceLen : ULong)
|
/minix/crypto/external/bsd/openssl/dist/crypto/comp/ |
H A D | c_zlib.c | 61 uLong sourceLen); 102 const Bytef *source, uLong sourceLen); 306 uLong sourceLen) 312 stream.avail_in = (uInt) sourceLen; 314 if ((uLong) stream.avail_in != sourceLen)
|
/minix/common/dist/zlib/as400/ |
H A D | zlib.inc | 107 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
|