Lines Matching full:maxbuffersize
174 size_t maxBufferSize;
323 cctxI.maxBufferSize = 5 MB; /* mess with real buffer size to prevent allocation; works because autoflush==1 & stableSrc==1 */
446 if (cctxPtr->maxBufferSize < requiredBuffSize) {
447 cctxPtr->maxBufferSize = requiredBuffSize;
627 if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ4F_blockLinked && lastBlockCompressed==fromTmpBuffer */
678 if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* necessarily LZ4F_blockLinked */
715 cctxPtr->maxBufferSize = 0; /* reuse HC context */
736 size_t maxBufferSize;
903 if (bufferNeeded > dctxPtr->maxBufferSize) { /* tmp buffers too small */
908 dctxPtr->maxBufferSize = 0;
911 dctxPtr->maxBufferSize = bufferNeeded;
1005 if (dctxPtr->dictSize + dstSize > dctxPtr->maxBufferSize) { /* tmp buffer not large enough */