Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c215 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()
[all …]