Home
last modified time | relevance | path

Searched refs:tmpIn (Results 1 – 1 of 1) sorted by relevance

/external/lz4/lib/
Dlz4frame.c176 BYTE* tmpIn; member
452 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressBegin()
584 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize); in LZ4F_compressUpdate()
591 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy); in LZ4F_compressUpdate()
594 …dstPtr += LZ4F_compressBlock(dstPtr, cctxPtr->tmpIn, blockSize, compress, cctxPtr->lz4CtxPtr, cctx… in LZ4F_compressUpdate()
596 if (cctxPtr->prefs.frameInfo.blockMode==LZ4F_blockLinked) cctxPtr->tmpIn += blockSize; in LZ4F_compressUpdate()
618 cctxPtr->tmpIn = cctxPtr->tmpBuff; in LZ4F_compressUpdate()
622 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
627 …if ((cctxPtr->tmpIn + blockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize) /* necessarily LZ… in LZ4F_compressUpdate()
631 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_compressUpdate()
[all …]