Lines Matching refs:dstCapacity
758 int compressedSize, int targetOutputSize, int dstCapacity,
1335 const int dstCapacity, in LZ4_compress_generic() argument
1343 srcSize, dstCapacity); in LZ4_compress_generic()
1347 …if (outputDirective != notLimited && dstCapacity <= 0) return 0; /* no output, can't write anythi… in LZ4_compress_generic()
1349 assert(outputDirective == notLimited || dstCapacity >= 1); in LZ4_compress_generic()
1362 dstCapacity, outputDirective, in LZ4_compress_generic()
1399 …te_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati… in LZ4_compress_fast_extState_fastReset() argument
1406 if (dstCapacity >= LZ4_compressBound(srcSize)) { in LZ4_compress_fast_extState_fastReset()
1425 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1427 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1432 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1438 int LZ4_compress_fast(const char* src, char* dest, int srcSize, int dstCapacity, int acceleration) in LZ4_compress_fast() argument
1448 result = LZ4_compress_fast_extState(ctxPtr, src, dest, srcSize, dstCapacity, acceleration); in LZ4_compress_fast()
1457 int LZ4_compress_default(const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_default() argument
1459 return LZ4_compress_fast(src, dst, srcSize, dstCapacity, 1); in LZ4_compress_default()
2388 …safe_partial(const char* src, char* dst, int compressedSize, int targetOutputSize, int dstCapacity) in LZ4_decompress_safe_partial() argument
2390 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial()
2391 return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity, in LZ4_decompress_safe_partial()
2416 …refix64k(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity) in LZ4_decompress_safe_partial_withPrefix64k() argument
2418 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_withPrefix64k()
2419 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_withPrefix64k()
2442 …llPrefix(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, in LZ4_decompress_safe_partial_withSmallPrefix() argument
2445 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_withSmallPrefix()
2446 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_withSmallPrefix()
2464 int compressedSize, int targetOutputSize, int dstCapacity, in LZ4_decompress_safe_partial_forceExtDict() argument
2467 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_forceExtDict()
2468 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_forceExtDict()
2663 …har* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, const char* di… in LZ4_decompress_safe_partial_usingDict() argument
2666 … return LZ4_decompress_safe_partial(source, dest, compressedSize, targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_usingDict()
2669 …decompress_safe_partial_withPrefix64k(source, dest, compressedSize, targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_usingDict()
2672 …artial_withSmallPrefix(source, dest, compressedSize, targetOutputSize, dstCapacity, (size_t)dictSi… in LZ4_decompress_safe_partial_usingDict()
2675 …e_partial_forceExtDict(source, dest, compressedSize, targetOutputSize, dstCapacity, dictStart, (si… in LZ4_decompress_safe_partial_usingDict()
2709 …utput_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_limitedOutput_continue() argument
2711 return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1); in LZ4_compress_limitedOutput_continue()