Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4frame.c1222 size_t tmpOutStart; member
1497 assert(dctx->dict + dctx->dictSize == dctx->tmpOut + dctx->tmpOutStart); in LZ4F_updateDict()
1505 const BYTE* const oldDictEnd = dctx->dict + dctx->dictSize - dctx->tmpOutStart; in LZ4F_updateDict()
1512 dctx->dictSize = preserveSize + dctx->tmpOutStart + dstSize; in LZ4F_updateDict()
1638 dctx->tmpOutStart = 0; in LZ4F_decompress()
1899 dctx->tmpOutStart = 0; in LZ4F_decompress()
1907 … size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr)); in LZ4F_decompress()
1908 memcpy(dstPtr, dctx->tmpOut + dctx->tmpOutStart, sizeToCopy); in LZ4F_decompress()
1914 dctx->tmpOutStart += sizeToCopy; in LZ4F_decompress()
1917 if (dctx->tmpOutStart == dctx->tmpOutSize) { /* all flushed */ in LZ4F_decompress()
[all …]