• Home
  • Raw
  • Download

Lines Matching refs:tmpIn

176     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()
638 memcpy(cctxPtr->tmpIn, srcPtr, sizeToCopy); in LZ4F_compressUpdate()
673 …dstPtr += LZ4F_compressBlock(dstPtr, cctxPtr->tmpIn, cctxPtr->tmpInSize, compress, cctxPtr->lz4Ctx… in LZ4F_flush()
674 if (cctxPtr->prefs.frameInfo.blockMode==LZ4F_blockLinked) cctxPtr->tmpIn += cctxPtr->tmpInSize; in LZ4F_flush()
678 …if ((cctxPtr->tmpIn + cctxPtr->maxBlockSize) > (cctxPtr->tmpBuff + cctxPtr->maxBufferSize)) { /* … in LZ4F_flush()
680 cctxPtr->tmpIn = cctxPtr->tmpBuff + realDictSize; in LZ4F_flush()
737 BYTE* tmpIn; member
772 FREEMEM(dctxPtr->tmpIn); in LZ4F_freeDecompressionContext()
904 FREEMEM(dctxPtr->tmpIn); in LZ4F_decodeHeader()
905 dctxPtr->tmpIn = (BYTE*)ALLOCATOR(dctxPtr->maxBlockSize); in LZ4F_decodeHeader()
906 if (dctxPtr->tmpIn == NULL) return err0r(LZ4F_ERROR_allocation_failed); in LZ4F_decodeHeader()
1116 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1124 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()
1185 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1193 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()
1309 memcpy(dctxPtr->tmpIn + dctxPtr->tmpInSize, srcPtr, sizeToCopy); in LZ4F_decompress()
1317 selectedIn = dctxPtr->tmpIn; in LZ4F_decompress()