Lines Matching refs:dstCCtx

348 size_t ZSTD_copyCCtx(ZSTD_CCtx *dstCCtx, const ZSTD_CCtx *srcCCtx, unsigned long long pledgedSrcSiz…  in ZSTD_copyCCtx()  argument
353 memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); in ZSTD_copyCCtx()
357 ZSTD_resetCCtx_advanced(dstCCtx, params, pledgedSrcSize, ZSTDcrp_noMemset); 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()
372 dstCCtx->nextSrc = srcCCtx->nextSrc; in ZSTD_copyCCtx()
373 dstCCtx->base = srcCCtx->base; in ZSTD_copyCCtx()
374 dstCCtx->dictBase = srcCCtx->dictBase; in ZSTD_copyCCtx()
375 dstCCtx->dictLimit = srcCCtx->dictLimit; in ZSTD_copyCCtx()
376 dstCCtx->lowLimit = srcCCtx->lowLimit; in ZSTD_copyCCtx()
377 dstCCtx->loadedDictEnd = srcCCtx->loadedDictEnd; in ZSTD_copyCCtx()
378 dstCCtx->dictID = srcCCtx->dictID; in ZSTD_copyCCtx()
381 dstCCtx->flagStaticTables = srcCCtx->flagStaticTables; in ZSTD_copyCCtx()
382 dstCCtx->flagStaticHufTable = srcCCtx->flagStaticHufTable; in ZSTD_copyCCtx()
384 memcpy(dstCCtx->litlengthCTable, srcCCtx->litlengthCTable, sizeof(dstCCtx->litlengthCTable)); in ZSTD_copyCCtx()
385 …memcpy(dstCCtx->matchlengthCTable, srcCCtx->matchlengthCTable, sizeof(dstCCtx->matchlengthCTable)); in ZSTD_copyCCtx()
386 memcpy(dstCCtx->offcodeCTable, srcCCtx->offcodeCTable, sizeof(dstCCtx->offcodeCTable)); in ZSTD_copyCCtx()
389 memcpy(dstCCtx->hufTable, srcCCtx->hufTable, 256 * 4); in ZSTD_copyCCtx()