Searched refs:maxBufferSize (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4frame.c120 size_t maxBufferSize; member in struct:LZ4F_cctx_s
137 size_t maxBufferSize; member in struct:LZ4F_dctx_s
299 cctxI.maxBufferSize = 5 MB; /* mess with real buffer size to prevent allocation; works because autoflush==1 & stableSrc==1 */
429 if (cctxPtr->maxBufferSize < requiredBuffSize)
431 cctxPtr->maxBufferSize = requiredBuffSize;
641 if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ4F_blockLinked && lastBlockCompressed==fromTmpBuffer */
695 if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) /* necessarily LZ4F_blockLinked */
894 if (bufferNeeded > dctxPtr->maxBufferSize) /* tmp buffers too small */
898 dctxPtr->maxBufferSize = bufferNeeded;
901 dctxPtr->tmpOutBuffer= (BYTE*)ALLOCATOR(dctxPtr->maxBufferSize);
[all...]

Completed in 26 milliseconds