Lines Matching refs:tmpIn
215 BYTE* tmpIn; member
636 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin_usingCDict()
825 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize); in LZ4F_compressUpdate()
832 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy); in LZ4F_compressUpdate()
835 dstPtr += LZ4F_makeBlock(dstPtr, cctxPtr->tmpIn, blockSize, in LZ4F_compressUpdate()
839 if (cctxPtr->prefs.frameInfo.blockMode==LZ4F_blockLinked) cctxPtr->tmpIn += blockSize; in LZ4F_compressUpdate()
865 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressUpdate()
869 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
874 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate()
878 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
885 memcpy(cctxPtr->tmpIn, srcPtr, sizeToCopy); in LZ4F_compressUpdate()
920 dstPtr += LZ4F_makeBlock(dstPtr, cctxPtr->tmpIn, cctxPtr->tmpInSize, in LZ4F_flush()
923 if (cctxPtr->prefs.frameInfo.blockMode==LZ4F_blockLinked) cctxPtr->tmpIn += cctxPtr->tmpInSize; in LZ4F_flush()
927 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush()
929 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_flush()
998 BYTE* tmpIn; member
1034 FREEMEM(dctx->tmpIn); in LZ4F_freeDecompressionContext()
1375 FREEMEM(dctx->tmpIn); in LZ4F_decompress()
1376 dctx->tmpIn = (BYTE*)ALLOC(dctx->maxBlockSize + 4 /* block checksum */); in LZ4F_decompress()
1377 if (dctx->tmpIn == NULL) in LZ4F_decompress()
1409 memcpy(dctx->tmpIn + dctx->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1418 selectedIn = dctx->tmpIn; in LZ4F_decompress()
1524 memcpy(dctx->tmpIn + dctx->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1532 selectedIn = dctx->tmpIn; in LZ4F_decompress()
1656 memcpy(dctx->tmpIn + dctx->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1664 selectedIn = dctx->tmpIn; in LZ4F_decompress()