Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c57 ZSTD_matchState_t matchState; member
1454 if (ZSTD_indexTooCloseToMax(zc->blockState.matchState.window)) { in ZSTD_resetCCtx_internal()
1514 zc->blockState.matchState.cParams = params.cParams; in ZSTD_resetCCtx_internal()
1561 &zc->blockState.matchState, in ZSTD_resetCCtx_internal()
1596 assert(!ZSTD_window_hasExtDict(cctx->blockState.matchState.window)); in ZSTD_invalidateRepCodes()
1620 size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; in ZSTD_shouldAttachDict()
1636 { const ZSTD_compressionParameters* const cdict_cParams = &cdict->matchState.cParams; in ZSTD_resetCCtx_byAttachingCDict()
1649 { const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc in ZSTD_resetCCtx_byAttachingCDict()
1650 - cdict->matchState.window.base); in ZSTD_resetCCtx_byAttachingCDict()
1651 const U32 cdictLen = cdictEnd - cdict->matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict()
[all …]
H A Dzstd_compress_internal.h158 ZSTD_matchState_t matchState; member
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c81 ZSTD_matchState_t matchState; member
1869 int const indexTooClose = ZSTD_indexTooCloseToMax(zc->blockState.matchState.window); in ZSTD_resetCCtx_internal()
1919 zc->blockState.matchState.cParams = params->cParams; in ZSTD_resetCCtx_internal()
1968 &zc->blockState.matchState, in ZSTD_resetCCtx_internal()
2005 assert(!ZSTD_window_hasExtDict(cctx->blockState.matchState.window)); in ZSTD_invalidateRepCodes()
2029 size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; in ZSTD_shouldAttachDict()
2030 int const dedicatedDictSearch = cdict->matchState.dedicatedDictSearch; in ZSTD_shouldAttachDict()
2050 ZSTD_compressionParameters adjusted_cdict_cParams = cdict->matchState.cParams; in ZSTD_resetCCtx_byAttachingCDict()
2057 if (cdict->matchState.dedicatedDictSearch) { in ZSTD_resetCCtx_byAttachingCDict()
2071 { const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc in ZSTD_resetCCtx_byAttachingCDict()
[all …]
H A Dzstd_compress_internal.h242 ZSTD_matchState_t matchState; member
H A Dzstdmt_compress.c769 assert(!ZSTD_window_hasExtDict(cctx->blockState.matchState.window)); in ZSTDMT_compressionJob()