• Home
  • Raw
  • Download

Lines Matching refs:tmpInTarget

739     size_t tmpInTarget;  member
841 dctxPtr->tmpInTarget = 8; in LZ4F_decodeHeader()
870 dctxPtr->tmpInTarget = frameHeaderSize; in LZ4F_decodeHeader()
914 dctxPtr->tmpInTarget = 0; in LZ4F_decodeHeader()
1081 dctxPtr->tmpInTarget = minFHSize; /* minimum to attempt decode */ in LZ4F_decompress()
1086 { size_t sizeToCopy = dctxPtr->tmpInTarget - dctxPtr->tmpInSize; in LZ4F_decompress()
1091 if (dctxPtr->tmpInSize < dctxPtr->tmpInTarget) { in LZ4F_decompress()
1092 …nextSrcSizeHint = (dctxPtr->tmpInTarget - dctxPtr->tmpInSize) + BHSize; /* rest of header + next… in LZ4F_decompress()
1096 … LZ4F_errorCode_t const hSize = LZ4F_decodeHeader(dctxPtr, dctxPtr->header, dctxPtr->tmpInTarget); in LZ4F_decompress()
1134 dctxPtr->tmpInTarget = nextCBlockSize; in LZ4F_decompress()
1148 { size_t sizeToCopy = dctxPtr->tmpInTarget; in LZ4F_decompress()
1161 if (sizeToCopy == dctxPtr->tmpInTarget) { /* all copied */ in LZ4F_decompress()
1165 dctxPtr->tmpInTarget -= sizeToCopy; /* still need to copy more */ in LZ4F_decompress()
1166 nextSrcSizeHint = dctxPtr->tmpInTarget + BHSize; in LZ4F_decompress()
1172 if ((size_t)(srcEnd-srcPtr) < dctxPtr->tmpInTarget) { in LZ4F_decompress()
1178 srcPtr += dctxPtr->tmpInTarget; in LZ4F_decompress()
1183 { size_t sizeToCopy = dctxPtr->tmpInTarget - dctxPtr->tmpInSize; in LZ4F_decompress()
1188 if (dctxPtr->tmpInSize < dctxPtr->tmpInTarget) { /* need more input */ in LZ4F_decompress()
1189 nextSrcSizeHint = (dctxPtr->tmpInTarget - dctxPtr->tmpInSize) + BHSize; in LZ4F_decompress()
1214 …edSize = decoder((const char*)selectedIn, (char*)dstPtr, (int)dctxPtr->tmpInTarget, (int)dctxPtr->… in LZ4F_decompress()
1254 …decoder((const char*)selectedIn, (char*)dctxPtr->tmpOut, (int)dctxPtr->tmpInTarget, (int)dctxPtr->… in LZ4F_decompress()
1337 dctxPtr->tmpInTarget = 8; in LZ4F_decompress()
1344 size_t sizeToCopy = dctxPtr->tmpInTarget - dctxPtr->tmpInSize; in LZ4F_decompress()
1349 …if (dctxPtr->tmpInSize < dctxPtr->tmpInTarget) { /* not enough input to get full sBlockSize; wait … in LZ4F_decompress()
1350 nextSrcSizeHint = dctxPtr->tmpInTarget - dctxPtr->tmpInSize; in LZ4F_decompress()
1360 dctxPtr->tmpInTarget = SFrameSize; in LZ4F_decompress()
1366 { size_t skipSize = dctxPtr->tmpInTarget; in LZ4F_decompress()
1369 dctxPtr->tmpInTarget -= skipSize; in LZ4F_decompress()
1371 nextSrcSizeHint = dctxPtr->tmpInTarget; in LZ4F_decompress()