Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4frame.c1051 BYTE* tmpOutBuffer; member
1088 FREEMEM(dctx->tmpOutBuffer); in LZ4F_freeDecompressionContext()
1320 assert(dctx->tmpOutBuffer != NULL); in LZ4F_updateDict()
1322 …if (withinTmp && (dctx->dict == dctx->tmpOutBuffer)) { /* continue history within tmpOutBuffer */ in LZ4F_updateDict()
1330 size_t const preserveSize = (size_t)(dctx->tmpOut - dctx->tmpOutBuffer); in LZ4F_updateDict()
1336 memcpy(dctx->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize); in LZ4F_updateDict()
1338 dctx->dict = dctx->tmpOutBuffer; in LZ4F_updateDict()
1343 if (dctx->dict == dctx->tmpOutBuffer) { /* copy dst into tmp to complete dict */ in LZ4F_updateDict()
1346 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()
1349 memcpy(dctx->tmpOutBuffer + dctx->dictSize, dstPtr, dstSize); in LZ4F_updateDict()
[all …]