Lines Matching refs:tmpInTarget

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