Lines Matching refs:sourceLen
401 uLong sourceLen)) in z_deflateBound() argument
404 return deflateBound(strm, sourceLen); in z_deflateBound()
406 return ZSTD_compressBound(sourceLen); in z_deflateBound()
1014 const Bytef *source, uLong sourceLen)) in z_compress() argument
1017 return compress(dest, destLen, source, sourceLen); in z_compress()
1021 source, sourceLen, in z_compress()
1024 (int)sourceLen, (int)dstCapacity); in z_compress()
1033 const Bytef *source, uLong sourceLen, in z_compress2() argument
1037 return compress2(dest, destLen, source, sourceLen, level); in z_compress2()
1040 size_t const cSize = ZSTD_compress(dest, dstCapacity, source, sourceLen, level); in z_compress2()
1048 ZEXTERN uLong ZEXPORT z_compressBound OF((uLong sourceLen)) in z_compressBound() argument
1051 return compressBound(sourceLen); in z_compressBound()
1053 return ZSTD_compressBound(sourceLen); in z_compressBound()
1058 const Bytef *source, uLong sourceLen)) in z_uncompress() argument
1060 if (!ZSTD_isFrame(source, sourceLen)) in z_uncompress()
1061 return uncompress(dest, destLen, source, sourceLen); in z_uncompress()
1064 size_t const dSize = ZSTD_decompress(dest, dstCapacity, source, sourceLen); in z_uncompress()