Lines Matching refs:tmpInTarget
1216 size_t tmpInTarget; member
1307 dctx->tmpInTarget = 8; in LZ4F_decodeHeader()
1345 dctx->tmpInTarget = frameHeaderSize; in LZ4F_decodeHeader()
1600 dctx->tmpInTarget = minFHSize; /* minimum size to decode header */ in LZ4F_decompress()
1606 … { size_t const sizeToCopy = MIN(dctx->tmpInTarget - dctx->tmpInSize, (size_t)(srcEnd - srcPtr)); in LZ4F_decompress()
1611 if (dctx->tmpInSize < dctx->tmpInTarget) { in LZ4F_decompress()
1612 …nextSrcSizeHint = (dctx->tmpInTarget - dctx->tmpInSize) + BHSize; /* rest of header + nextBlockH… in LZ4F_decompress()
1616 …FORWARD_IF_ERROR( LZ4F_decodeHeader(dctx, dctx->header, dctx->tmpInTarget) ); /* will update dStag… in LZ4F_decompress()
1636 dctx->tmpInTarget = 0; in LZ4F_decompress()
1685 dctx->tmpInTarget = nextCBlockSize; in LZ4F_decompress()
1694 dctx->tmpInTarget = nextCBlockSize + crcSize; in LZ4F_decompress()
1710 sizeToCopy = MIN(dctx->tmpInTarget, minBuffSize); in LZ4F_decompress()
1729 if (sizeToCopy == dctx->tmpInTarget) { /* all done */ in LZ4F_decompress()
1737 dctx->tmpInTarget -= sizeToCopy; /* need to copy more */ in LZ4F_decompress()
1739 nextSrcSizeHint = dctx->tmpInTarget + in LZ4F_decompress()
1784 if ((size_t)(srcEnd-srcPtr) < dctx->tmpInTarget) { in LZ4F_decompress()
1791 srcPtr += dctx->tmpInTarget; in LZ4F_decompress()
1795 { size_t const wantedData = dctx->tmpInTarget - dctx->tmpInSize; in LZ4F_decompress()
1801 if (dctx->tmpInSize < dctx->tmpInTarget) { /* need more input */ in LZ4F_decompress()
1802 nextSrcSizeHint = (dctx->tmpInTarget - dctx->tmpInSize) in LZ4F_decompress()
1815 assert(dctx->tmpInTarget >= 4); in LZ4F_decompress()
1816 dctx->tmpInTarget -= 4; in LZ4F_decompress()
1818 { U32 const readBlockCrc = LZ4F_readLE32(selectedIn + dctx->tmpInTarget); in LZ4F_decompress()
1819 U32 const calcBlockCrc = XXH32(selectedIn, dctx->tmpInTarget, 0); in LZ4F_decompress()
1846 (int)dctx->tmpInTarget, (int)dctx->maxBlockSize, in LZ4F_decompress()
1891 (int)dctx->tmpInTarget, (int)dctx->maxBlockSize, in LZ4F_decompress()
1981 dctx->tmpInTarget = 8; in LZ4F_decompress()
1987 { size_t const sizeToCopy = MIN(dctx->tmpInTarget - dctx->tmpInSize, in LZ4F_decompress()
1992 if (dctx->tmpInSize < dctx->tmpInTarget) { in LZ4F_decompress()
1994 nextSrcSizeHint = dctx->tmpInTarget - dctx->tmpInSize; in LZ4F_decompress()
2004 dctx->tmpInTarget = SFrameSize; in LZ4F_decompress()
2010 { size_t const skipSize = MIN(dctx->tmpInTarget, (size_t)(srcEnd-srcPtr)); in LZ4F_decompress()
2012 dctx->tmpInTarget -= skipSize; in LZ4F_decompress()
2014 nextSrcSizeHint = dctx->tmpInTarget; in LZ4F_decompress()