/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | compress.c | 22 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 …]
|
D | uncompr.c | 24 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;
|
D | zlib.h | 699 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));
|
D | deflate.c | 566 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/ |
D | compress.c | 22 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;
|
D | uncompr.c | 26 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;
|
D | zlib.h | 645 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));
|
D | deflate.c | 489 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);
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | zlib.h | 761 uLong sourceLen)); 1228 const Bytef *source, uLong sourceLen)); 1243 const Bytef *source, uLong sourceLen, 1258 ZEXTERN uLong ZEXPORT compressBound OF((uLong sourceLen)); 1266 const Bytef *source, uLong sourceLen)); 1284 const Bytef *source, uLong *sourceLen));
|
/device/generic/goldfish/wifi/ipv6proxy/ |
D | socket.cpp | 160 socklen_t sourceLen = from->size(); in receiveFrom() local 166 &sourceLen); in receiveFrom()
|