Home
last modified time | relevance | path

Searched refs:tmpOutStart (Results 1 – 1 of 1) sorted by relevance

/third_party/lz4/lib/
Dlz4frame.c1056 size_t tmpOutStart; member
1324 assert(dctx->dict + dctx->dictSize == dctx->tmpOut + dctx->tmpOutStart); in LZ4F_updateDict()
1332 const BYTE* const oldDictEnd = dctx->dict + dctx->dictSize - dctx->tmpOutStart; in LZ4F_updateDict()
1339 dctx->dictSize = preserveSize + dctx->tmpOutStart + dstSize; in LZ4F_updateDict()
1469 dctx->tmpOutStart = 0; in LZ4F_decompress()
1719 dctx->tmpOutStart = 0; in LZ4F_decompress()
1727 … size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()
1728 memcpy(dstPtr, dctx->tmpOut + dctx->tmpOutStart, sizeToCopy); in LZ4F_decompress()
1734 dctx->tmpOutStart += sizeToCopy; in LZ4F_decompress()
1737 if (dctx->tmpOutStart == dctx->tmpOutSize) { /* all flushed */ in LZ4F_decompress()
[all …]