Searched refs:preserveSize (Results 1 – 1 of 1) sorted by relevance
1330 size_t const preserveSize = (size_t)(dctx->tmpOut - dctx->tmpOutBuffer); in LZ4F_updateDict() local1334 if (copySize > preserveSize) copySize = preserveSize; in LZ4F_updateDict()1336 memcpy(dctx->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize); in LZ4F_updateDict()1339 dctx->dictSize = preserveSize + dctx->tmpOutStart + dstSize; in LZ4F_updateDict()1345 size_t const preserveSize = 64 KB - dstSize; in LZ4F_updateDict() local1346 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()1347 dctx->dictSize = preserveSize; in LZ4F_updateDict()1355 { size_t preserveSize = 64 KB - dstSize; in LZ4F_updateDict() local1356 if (preserveSize > dctx->dictSize) preserveSize = dctx->dictSize; in LZ4F_updateDict()1357 memcpy(dctx->tmpOutBuffer, dctx->dict + dctx->dictSize - preserveSize, preserveSize); in LZ4F_updateDict()[all …]