Lines Matching refs:dstCapacity
698 int* srcSizePtr, int dstCapacity,
710 int const dstCapacity, in LZ4HC_compress_generic_internal() argument
740 …if (limit == limitedDestSize && dstCapacity < 1) return 0; /* Impossible to store anything… in LZ4HC_compress_generic_internal()
750 src, dst, srcSizePtr, dstCapacity, in LZ4HC_compress_generic_internal()
754 src, dst, srcSizePtr, dstCapacity, in LZ4HC_compress_generic_internal()
768 int const dstCapacity, in LZ4HC_compress_generic_noDictCtx() argument
774 …return LZ4HC_compress_generic_internal(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit, noDi… in LZ4HC_compress_generic_noDictCtx()
782 int const dstCapacity, in LZ4HC_compress_generic_dictCtx() argument
791 … return LZ4HC_compress_generic_noDictCtx(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit); in LZ4HC_compress_generic_dictCtx()
796 … return LZ4HC_compress_generic_noDictCtx(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit); in LZ4HC_compress_generic_dictCtx()
798 …return LZ4HC_compress_generic_internal(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit, usin… in LZ4HC_compress_generic_dictCtx()
807 int const dstCapacity, in LZ4HC_compress_generic() argument
813 … return LZ4HC_compress_generic_noDictCtx(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit); in LZ4HC_compress_generic()
815 … return LZ4HC_compress_generic_dictCtx(ctx, src, dst, srcSizePtr, dstCapacity, cLevel, limit); in LZ4HC_compress_generic()
822 …C_fastReset (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int compressio… in LZ4_compress_HC_extStateHC_fastReset() argument
828 if (dstCapacity < LZ4_compressBound(srcSize)) in LZ4_compress_HC_extStateHC_fastReset()
829 …return LZ4HC_compress_generic (ctx, src, dst, &srcSize, dstCapacity, compressionLevel, limitedOutp… in LZ4_compress_HC_extStateHC_fastReset()
831 … return LZ4HC_compress_generic (ctx, src, dst, &srcSize, dstCapacity, compressionLevel, noLimit); in LZ4_compress_HC_extStateHC_fastReset()
834 …_extStateHC (void* state, const char* src, char* dst, int srcSize, int dstCapacity, int compressio… in LZ4_compress_HC_extStateHC() argument
838 …return LZ4_compress_HC_extStateHC_fastReset(state, src, dst, srcSize, dstCapacity, compressionLeve… in LZ4_compress_HC_extStateHC()
841 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int dstCapacity, int compressionLevel) in LZ4_compress_HC() argument
849 …int const cSize = LZ4_compress_HC_extStateHC(statePtr, src, dst, srcSize, dstCapacity, compression… in LZ4_compress_HC()
958 int* srcSizePtr, int dstCapacity, in LZ4_compressHC_continue_generic() argument
987 …return LZ4HC_compress_generic (ctxPtr, src, dst, srcSizePtr, dstCapacity, ctxPtr->compressionLevel… in LZ4_compressHC_continue_generic()
990 …ontinue (LZ4_streamHC_t* LZ4_streamHCPtr, const char* src, char* dst, int srcSize, int dstCapacity) in LZ4_compress_HC_continue() argument
992 if (dstCapacity < LZ4_compressBound(srcSize)) in LZ4_compress_HC_continue()
993 …return LZ4_compressHC_continue_generic (LZ4_streamHCPtr, src, dst, &srcSize, dstCapacity, limitedO… in LZ4_compress_HC_continue()
995 …return LZ4_compressHC_continue_generic (LZ4_streamHCPtr, src, dst, &srcSize, dstCapacity, noLimit); in LZ4_compress_HC_continue()
1076 …t_continue (void* LZ4HC_Data, const char* src, char* dst, int srcSize, int dstCapacity, int cLevel) in LZ4_compressHC2_limitedOutput_continue() argument
1078 …&((LZ4_streamHC_t*)LZ4HC_Data)->internal_donotuse, src, dst, &srcSize, dstCapacity, cLevel, limite… in LZ4_compressHC2_limitedOutput_continue()
1157 int dstCapacity, in LZ4HC_compress_optimal() argument
1175 BYTE* oend = op + dstCapacity; in LZ4HC_compress_optimal()