Lines Matching refs:sourceLen
487 uLong sourceLen)) in z_deflateBound() argument
490 return deflateBound(strm, sourceLen); in z_deflateBound()
492 return ZSTD_compressBound(sourceLen); in z_deflateBound()
1100 const Bytef *source, uLong sourceLen)) in z_compress() argument
1103 return compress(dest, destLen, source, sourceLen); in z_compress()
1107 source, sourceLen, in z_compress()
1110 (int)sourceLen, (int)dstCapacity); in z_compress()
1119 const Bytef *source, uLong sourceLen, in z_compress2() argument
1123 return compress2(dest, destLen, source, sourceLen, level); in z_compress2()
1126 size_t const cSize = ZSTD_compress(dest, dstCapacity, source, sourceLen, level); in z_compress2()
1134 ZEXTERN uLong ZEXPORT z_compressBound OF((uLong sourceLen)) in z_compressBound() argument
1137 return compressBound(sourceLen); in z_compressBound()
1139 return ZSTD_compressBound(sourceLen); in z_compressBound()
1144 const Bytef *source, uLong sourceLen)) in z_uncompress() argument
1146 if (!ZSTD_isFrame(source, sourceLen)) in z_uncompress()
1147 return uncompress(dest, destLen, source, sourceLen); in z_uncompress()
1150 size_t const dSize = ZSTD_decompress(dest, dstCapacity, source, sourceLen); in z_uncompress()