Home
last modified time | relevance | path

Searched refs:sourceLen (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument
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) in compress() argument
66 uLong sourceLen;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
75 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument
76 uLong sourceLen; in compressBound()
78 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
[all …]
Duncompr.c24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument
28 uLong sourceLen;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
Dzlib.h699 uLong sourceLen));
1161 const Bytef *source, uLong sourceLen));
1175 const Bytef *source, uLong sourceLen,
1190 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1198 const Bytef *source, uLong sourceLen));
Ddeflate.c566 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
568 uLong sourceLen;
575 complen = sourceLen +
576 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 5;
619 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
620 (sourceLen >> 25) + 13 - 6 + wraplen;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) in compress2() argument
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) in compress() argument
66 uLong sourceLen;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
75 uLong ZEXPORT compressBound (sourceLen) in compressBound() argument
76 uLong sourceLen; in compressBound()
78 return sourceLen + (sourceLen >> 12) + (sourceLen >> 14) + 11;
Duncompr.c26 int ZEXPORT uncompress (dest, destLen, source, sourceLen) in uncompress() argument
30 uLong sourceLen;
36 stream.avail_in = (uInt)sourceLen;
38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
Dzlib.h645 uLong sourceLen));
1010 const Bytef *source, uLong sourceLen));
1025 const Bytef *source, uLong sourceLen,
1040 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen));
1048 const Bytef *source, uLong sourceLen));
Ddeflate.c489 uLong ZEXPORT deflateBound(strm, sourceLen) in deflateBound() argument
491 uLong sourceLen;
497 destLen = sourceLen +
498 ((sourceLen + 7) >> 3) + ((sourceLen + 63) >> 6) + 11;
510 return compressBound(sourceLen);