Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_compress.c2433 * Duplicate an existing context `srcCCtx` into another one `dstCCtx`.
2437 * `windowLog` value is enforced if != 0, otherwise value is copied from srcCCtx.
2440 const ZSTD_CCtx* srcCCtx, in ZSTD_copyCCtx_internal() argument
2445 RETURN_ERROR_IF(srcCCtx->stage!=ZSTDcs_init, stage_wrong, in ZSTD_copyCCtx_internal()
2448 ZSTD_memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); in ZSTD_copyCCtx_internal()
2451 params.cParams = srcCCtx->appliedParams.cParams; in ZSTD_copyCCtx_internal()
2452 assert(srcCCtx->appliedParams.useRowMatchFinder != ZSTD_ps_auto); in ZSTD_copyCCtx_internal()
2453 assert(srcCCtx->appliedParams.postBlockSplitter != ZSTD_ps_auto); in ZSTD_copyCCtx_internal()
2454 assert(srcCCtx->appliedParams.ldmParams.enableLdm != ZSTD_ps_auto); in ZSTD_copyCCtx_internal()
2455 params.useRowMatchFinder = srcCCtx in ZSTD_copyCCtx_internal()
2517 ZSTD_copyCCtx(ZSTD_CCtx * dstCCtx,const ZSTD_CCtx * srcCCtx,unsigned long long pledgedSrcSize) ZSTD_copyCCtx() argument
[all...]