Searched refs:srcCCtx (Results 1 – 1 of 1) sorted by relevance
1161 const ZSTD_CCtx* srcCCtx, in ZSTD_copyCCtx_internal() argument1167 if (srcCCtx->stage!=ZSTDcs_init) return ERROR(stage_wrong); in ZSTD_copyCCtx_internal()1169 memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); in ZSTD_copyCCtx_internal()1172 params.cParams = srcCCtx->appliedParams.cParams; in ZSTD_copyCCtx_internal()1184 …{ size_t const chainSize = (srcCCtx->appliedParams.cParams.strategy == ZSTD_fast) ? 0 : ((size_t… in ZSTD_copyCCtx_internal()1185 size_t const hSize = (size_t)1 << srcCCtx->appliedParams.cParams.hashLog; in ZSTD_copyCCtx_internal()1186 size_t const h3Size = (size_t)1 << srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal()1195 ZSTD_matchState_t const* srcMatchState = &srcCCtx->blockState.matchState; in ZSTD_copyCCtx_internal()1202 dstCCtx->dictID = srcCCtx->dictID; in ZSTD_copyCCtx_internal()1205 …memcpy(dstCCtx->blockState.prevCBlock, srcCCtx->blockState.prevCBlock, sizeof(*srcCCtx->blockState… in ZSTD_copyCCtx_internal()[all …]