Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c1052 size_t tmpOutStart; member
1311 assert(dctx->dict + dctx->dictSize == dctx->tmpOut + dctx->tmpOutStart); in LZ4F_updateDict()
1319 const BYTE* const oldDictEnd = dctx->dict + dctx->dictSize - dctx->tmpOutStart; in LZ4F_updateDict()
1326 dctx->dictSize = preserveSize + dctx->tmpOutStart + dstSize; in LZ4F_updateDict()
1449 dctx->tmpOutStart = 0; in LZ4F_decompress()
1681 dctx->tmpOutStart = 0; in LZ4F_decompress()
1687 … { size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()
1688 memcpy(dstPtr, dctx->tmpOut + dctx->tmpOutStart, sizeToCopy); in LZ4F_decompress()
1694 dctx->tmpOutStart += sizeToCopy; in LZ4F_decompress()
1697 if (dctx->tmpOutStart == dctx->tmpOutSize) { /* all flushed */ in LZ4F_decompress()
[all …]