Searched refs:tmpOutBuffer (Results 1 – 1 of 1) sorted by relevance
1217 BYTE* tmpOutBuffer; member1265 LZ4F_free(dctx->tmpOutBuffer, dctx->cmem); in LZ4F_freeDecompressionContext()1493 assert(dctx->tmpOutBuffer != NULL); in LZ4F_updateDict()1495 …if (withinTmp && (dctx->dict == dctx->tmpOutBuffer)) { /* continue history within tmpOutBuffer */ in LZ4F_updateDict()1503 size_t const preserveSize = (size_t)(dctx->tmpOut - dctx->tmpOutBuffer); in LZ4F_updateDict()1509 memcpy(dctx->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize); in LZ4F_updateDict()1511 dctx->dict = dctx->tmpOutBuffer; in LZ4F_updateDict()1516 if (dctx->dict == dctx->tmpOutBuffer) { /* copy dst into tmp to complete dict */ in LZ4F_updateDict()1519 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()1522 memcpy(dctx->tmpOutBuffer + dctx->dictSize, dstPtr, dstSize); in LZ4F_updateDict()[all …]