Lines Matching refs:dstCapacity

1632     const int dstCapacity,  in LZ4_compress_generic()  argument
1640 srcSize, dstCapacity); in LZ4_compress_generic()
1648 if (outputDirective != notLimited && dstCapacity <= 0) in LZ4_compress_generic()
1651 assert(outputDirective == notLimited || dstCapacity >= 1); in LZ4_compress_generic()
1665 dstCapacity, outputDirective, in LZ4_compress_generic()
1712 …te_fastReset(void *state, const char *src, char *dst, int srcSize, int dstCapacity, int accelerati… in LZ4_compress_fast_extState_fastReset() argument
1720 if (dstCapacity >= LZ4_compressBound(srcSize)) in LZ4_compress_fast_extState_fastReset()
1750 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1754 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1761 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
2816 …safe_partial(const char *src, char *dst, int compressedSize, int targetOutputSize, int dstCapacity) in LZ4_decompress_safe_partial() argument
2818 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial()
2819 return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity, in LZ4_decompress_safe_partial()
3108 …Output_continue(LZ4_stream_t *LZ4_stream, const char *src, char *dst, int srcSize, int dstCapacity) in LZ4_compress_limitedOutput_continue() argument
3110 return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1); in LZ4_compress_limitedOutput_continue()