Lines Matching refs:tmpIn
123 BYTE* tmpIn; member
138 BYTE* tmpIn; member
405 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin()
546 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize); in LZ4F_compressUpdate()
555 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy); in LZ4F_compressUpdate()
558 …dstPtr += LZ4F_compressBlock(dstPtr, cctxPtr->tmpIn, blockSize, compress, cctxPtr->lz4CtxPtr, cctx… in LZ4F_compressUpdate()
560 if (cctxPtr->prefs.frameInfo.blockMode==blockLinked) cctxPtr->tmpIn += blockSize; in LZ4F_compressUpdate()
586 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressUpdate()
592 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
597 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily bl… in LZ4F_compressUpdate()
601 cctxPtr->tmpIn = cctxPtr->tmpBuff + 64 KB; in LZ4F_compressUpdate()
609 memcpy(cctxPtr->tmpIn, srcPtr, sizeToCopy); in LZ4F_compressUpdate()
647 …dstPtr += LZ4F_compressBlock(dstPtr, cctxPtr->tmpIn, cctxPtr->tmpInSize, compress, cctxPtr->lz4Ctx… in LZ4F_flush()
648 if (cctxPtr->prefs.frameInfo.blockMode==blockLinked) cctxPtr->tmpIn += cctxPtr->tmpInSize; in LZ4F_flush()
652 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) /* n… in LZ4F_flush()
655 cctxPtr->tmpIn = cctxPtr->tmpBuff + 64 KB; in LZ4F_flush()
726 FREEMEM(dctxPtr->tmpIn); in LZ4F_freeDecompressionContext()
786 FREEMEM(dctxPtr->tmpIn); in LZ4F_decodeHeader()
789 dctxPtr->tmpIn = ALLOCATOR(dctxPtr->maxBlockSize); in LZ4F_decodeHeader()
790 if (dctxPtr->tmpIn == NULL) return (size_t)-ERROR_GENERIC; in LZ4F_decodeHeader()
1044 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1053 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()
1125 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1134 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()
1262 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1271 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()