Home
last modified time | relevance | path

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

/lib/zstd/
Dcompress.c348 size_t ZSTD_copyCCtx(ZSTD_CCtx *dstCCtx, const ZSTD_CCtx *srcCCtx, unsigned long long pledgedSrcSiz… in ZSTD_copyCCtx() argument
350 if (srcCCtx->stage != ZSTDcs_init) in ZSTD_copyCCtx()
353 memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); in ZSTD_copyCCtx()
355 ZSTD_parameters params = srcCCtx->params; in ZSTD_copyCCtx()
362 …size_t const chainSize = (srcCCtx->params.cParams.strategy == ZSTD_fast) ? 0 : (1 << srcCCtx->para… in ZSTD_copyCCtx()
363 size_t const hSize = ((size_t)1) << srcCCtx->params.cParams.hashLog; in ZSTD_copyCCtx()
364 size_t const h3Size = (size_t)1 << srcCCtx->hashLog3; in ZSTD_copyCCtx()
366 memcpy(dstCCtx->workSpace, srcCCtx->workSpace, tableSpace); in ZSTD_copyCCtx()
370 dstCCtx->nextToUpdate = srcCCtx->nextToUpdate; in ZSTD_copyCCtx()
371 dstCCtx->nextToUpdate3 = srcCCtx->nextToUpdate3; in ZSTD_copyCCtx()
[all …]