Lines Matching refs:sourceLen
472 uLong sourceLen)) in z_deflateBound() argument
475 return deflateBound(strm, sourceLen); in z_deflateBound()
477 return ZSTD_compressBound(sourceLen); in z_deflateBound()
1085 const Bytef *source, uLong sourceLen)) in z_compress() argument
1088 return compress(dest, destLen, source, sourceLen); in z_compress()
1092 source, sourceLen, in z_compress()
1095 (int)sourceLen, (int)dstCapacity); in z_compress()
1104 const Bytef *source, uLong sourceLen, in z_compress2() argument
1108 return compress2(dest, destLen, source, sourceLen, level); in z_compress2()
1111 size_t const cSize = ZSTD_compress(dest, dstCapacity, source, sourceLen, level); in z_compress2()
1119 ZEXTERN uLong ZEXPORT z_compressBound OF((uLong sourceLen)) in z_compressBound() argument
1122 return compressBound(sourceLen); in z_compressBound()
1124 return ZSTD_compressBound(sourceLen); in z_compressBound()
1129 const Bytef *source, uLong sourceLen)) in z_uncompress() argument
1131 if (!ZSTD_isFrame(source, sourceLen)) in z_uncompress()
1132 return uncompress(dest, destLen, source, sourceLen); in z_uncompress()
1135 size_t const dSize = ZSTD_decompress(dest, dstCapacity, source, sourceLen); in z_uncompress()