Searched refs:tmpOutBuffer (Results 1 – 1 of 1) sorted by relevance
1001 BYTE* tmpOutBuffer; member1035 FREEMEM(dctx->tmpOutBuffer); in LZ4F_freeDecompressionContext()1248 …if ((withinTmp) && (dctx->dict == dctx->tmpOutBuffer)) { /* continue history within tmpOutBuffer… in LZ4F_updateDict()1256 size_t const preserveSize = dctx->tmpOut - dctx->tmpOutBuffer; in LZ4F_updateDict()1262 memcpy(dctx->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize); in LZ4F_updateDict()1264 dctx->dict = dctx->tmpOutBuffer; in LZ4F_updateDict()1269 if (dctx->dict == dctx->tmpOutBuffer) { /* copy dst into tmp to complete dict */ in LZ4F_updateDict()1272 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()1275 memcpy(dctx->tmpOutBuffer + dctx->dictSize, dstPtr, dstSize); in LZ4F_updateDict()1283 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()[all …]