• Home
  • Raw
  • Download

Lines Matching refs:dstCapacity

358                                      void* dstBuffer, size_t dstCapacity,  in LZ4F_compressFrame_usingCDict()  argument
367 BYTE* const dstEnd = dstStart + dstCapacity; in LZ4F_compressFrame_usingCDict()
384 … if (dstCapacity < LZ4F_compressFrameBound(srcSize, &prefs)) /* condition to guarantee success */ in LZ4F_compressFrame_usingCDict()
387 …{ size_t const headerSize = LZ4F_compressBegin_usingCDict(cctx, dstBuffer, dstCapacity, cdict, &pr… in LZ4F_compressFrame_usingCDict()
410 size_t LZ4F_compressFrame(void* dstBuffer, size_t dstCapacity, in LZ4F_compressFrame() argument
438 result = LZ4F_compressFrame_usingCDict(cctxPtr, dstBuffer, dstCapacity, in LZ4F_compressFrame()
582 void* dstBuffer, size_t dstCapacity, in LZ4F_compressBegin_usingCDict() argument
591 if (dstCapacity < maxFHSize) return err0r(LZ4F_ERROR_dstMaxSize_tooSmall); in LZ4F_compressBegin_usingCDict()
692 void* dstBuffer, size_t dstCapacity, in LZ4F_compressBegin() argument
695 return LZ4F_compressBegin_usingCDict(cctxPtr, dstBuffer, dstCapacity, in LZ4F_compressBegin()
739 static int LZ4F_compressBlock(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, … in LZ4F_compressBlock() argument
744 …return LZ4_compress_fast_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstCapacity, acceleration… in LZ4F_compressBlock()
746 … return LZ4_compress_fast_extState_fastReset(ctx, src, dst, srcSize, dstCapacity, acceleration); in LZ4F_compressBlock()
750 …Block_continue(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, int level, con… in LZ4F_compressBlock_continue() argument
754 …return LZ4_compress_fast_continue((LZ4_stream_t*)ctx, src, dst, srcSize, dstCapacity, acceleration… in LZ4F_compressBlock_continue()
757 static int LZ4F_compressBlockHC(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity in LZ4F_compressBlockHC() argument
761 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC()
763 return LZ4_compress_HC_extStateHC_fastReset(ctx, src, dst, srcSize, dstCapacity, level); in LZ4F_compressBlockHC()
766 …ockHC_continue(void* ctx, const char* src, char* dst, int srcSize, int dstCapacity, int level, con… in LZ4F_compressBlockHC_continue() argument
769 return LZ4_compress_HC_continue((LZ4_streamHC_t*)ctx, src, dst, srcSize, dstCapacity); in LZ4F_compressBlockHC_continue()
799 void* dstBuffer, size_t dstCapacity, in LZ4F_compressUpdate() argument
815 if (dstCapacity < LZ4F_compressBound_internal(srcSize, &(cctxPtr->prefs), cctxPtr->tmpInSize)) in LZ4F_compressUpdate()
905 size_t LZ4F_flush(LZ4F_cctx* cctxPtr, void* dstBuffer, size_t dstCapacity, const LZ4F_compressOptio… in LZ4F_flush() argument
913 …if (dstCapacity < (cctxPtr->tmpInSize + 4)) return err0r(LZ4F_ERROR_dstMaxSize_tooSmall); /* +4 … in LZ4F_flush()