Searched refs:tmpOutStart (Results 1 – 1 of 1) sorted by relevance
1006 size_t tmpOutStart; member1250 assert(dctx->dict + dctx->dictSize == dctx->tmpOut + dctx->tmpOutStart); in LZ4F_updateDict()1258 const BYTE* const oldDictEnd = dctx->dict + dctx->dictSize - dctx->tmpOutStart; in LZ4F_updateDict()1265 dctx->dictSize = preserveSize + dctx->tmpOutStart + dstSize; in LZ4F_updateDict()1388 dctx->tmpOutStart = 0; in LZ4F_decompress()1608 dctx->tmpOutStart = 0; in LZ4F_decompress()1614 … { size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()1615 memcpy(dstPtr, dctx->tmpOut + dctx->tmpOutStart, sizeToCopy); in LZ4F_decompress()1621 dctx->tmpOutStart += sizeToCopy; in LZ4F_decompress()1624 if (dctx->tmpOutStart == dctx->tmpOutSize) { /* all flushed */ in LZ4F_decompress()[all …]