• Home
  • Raw
  • Download

Lines Matching refs:dstCapacity

747                                      int compressedSize, int targetOutputSize, int dstCapacity,
1314 const int dstCapacity, in LZ4_compress_generic() argument
1322 srcSize, dstCapacity); in LZ4_compress_generic()
1326 …if (outputDirective != notLimited && dstCapacity <= 0) return 0; /* no output, can't write anythi… in LZ4_compress_generic()
1328 assert(outputDirective == notLimited || dstCapacity >= 1); in LZ4_compress_generic()
1341 dstCapacity, outputDirective, in LZ4_compress_generic()
1378 …te_fastReset(void* state, const char* src, char* dst, int srcSize, int dstCapacity, int accelerati… in LZ4_compress_fast_extState_fastReset() argument
1384 if (dstCapacity >= LZ4_compressBound(srcSize)) { in LZ4_compress_fast_extState_fastReset()
1403 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1405 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1410 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
2353 …safe_partial(const char* src, char* dst, int compressedSize, int targetOutputSize, int dstCapacity) in LZ4_decompress_safe_partial() argument
2355 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial()
2356 return LZ4_decompress_generic(src, dst, compressedSize, dstCapacity, in LZ4_decompress_safe_partial()
2381 …refix64k(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity) in LZ4_decompress_safe_partial_withPrefix64k() argument
2383 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_withPrefix64k()
2384 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_withPrefix64k()
2407 …llPrefix(const char* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, in LZ4_decompress_safe_partial_withSmallPrefix() argument
2410 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_withSmallPrefix()
2411 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_withSmallPrefix()
2428 int compressedSize, int targetOutputSize, int dstCapacity, in LZ4_decompress_safe_partial_forceExtDict() argument
2431 dstCapacity = MIN(targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_forceExtDict()
2432 return LZ4_decompress_generic(source, dest, compressedSize, dstCapacity, in LZ4_decompress_safe_partial_forceExtDict()
2627 …har* source, char* dest, int compressedSize, int targetOutputSize, int dstCapacity, const char* di… in LZ4_decompress_safe_partial_usingDict() argument
2630 … return LZ4_decompress_safe_partial(source, dest, compressedSize, targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_usingDict()
2633 …decompress_safe_partial_withPrefix64k(source, dest, compressedSize, targetOutputSize, dstCapacity); in LZ4_decompress_safe_partial_usingDict()
2636 …artial_withSmallPrefix(source, dest, compressedSize, targetOutputSize, dstCapacity, (size_t)dictSi… in LZ4_decompress_safe_partial_usingDict()
2639 …e_partial_forceExtDict(source, dest, compressedSize, targetOutputSize, dstCapacity, dictStart, (si… in LZ4_decompress_safe_partial_usingDict()
2673 …utput_continue (LZ4_stream_t* LZ4_stream, const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_limitedOutput_continue() argument
2675 return LZ4_compress_fast_continue(LZ4_stream, src, dst, srcSize, dstCapacity, 1); in LZ4_compress_limitedOutput_continue()