Home
last modified time | relevance | path

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

/linux-6.15/lib/zstd/compress/
H A Dzstd_double_fast.c27 U32 const hBitsS = cParams->chainLog + ZSTD_SHORT_CACHE_TAG_BITS; in ZSTD_fillDoubleHashTableForCDict()
65 U32 const hBitsS = cParams->chainLog; in ZSTD_fillDoubleHashTableForCCtx()
114 const U32 hBitsS = cParams->chainLog; in ZSTD_compressBlock_doubleFast_noDict_generic()
338 const U32 hBitsS = cParams->chainLog; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
361 const U32 dictHBitsS = dictCParams->chainLog + ZSTD_SHORT_CACHE_TAG_BITS; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
371 size_t const chainTableBytes = (((size_t)1) << dictCParams->chainLog) * sizeof(U32); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
620 U32 const hBitsS = cParams->chainLog; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_compress.c788 CCtxParams->cParams.chainLog = (U32)value; in ZSTD_CCtxParams_setParameter()
789 return CCtxParams->cParams.chainLog; in ZSTD_CCtxParams_setParameter()
1000 *value = (int)CCtxParams->cParams.chainLog; in ZSTD_CCtxParams_getParameter()
1350 CLAMP(ZSTD_c_chainLog, cParams.chainLog); in ZSTD_clampCParams()
1516 if (cPar.chainLog > maxShortCacheHashLog) { in ZSTD_adjustCParams_internal()
1517 cPar.chainLog = maxShortCacheHashLog; in ZSTD_adjustCParams_internal()
1566 if (overrides->chainLog) cParams->chainLog = overrides->chainLog; in ZSTD_overrideCParams()
1836 assert(cParams1.chainLog == cParams2.chainLog); in ZSTD_assertEqualCParams()
2351 assert(cctx->appliedParams.cParams.chainLog == cdict_cParams->chainLog); in ZSTD_resetCCtx_byCopyingCDict()
2466 assert(dstCCtx->appliedParams.cParams.chainLog == srcCCtx->appliedParams.cParams.chainLog); in ZSTD_copyCCtx_internal()
[all …]
H A Dzstd_lazy.c39 U32 const btLog = cParams->chainLog - 1; in ZSTD_updateDUBT()
82 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertDUBT1()
191 U32 const btLog = dmsCParams->chainLog - 1; in ZSTD_DUBT_findBetterDictMatch()
261 U32 const btLog = cParams->chainLog - 1; in ZSTD_DUBT_findBestMatch()
418 U32 const chainSize = 1 << ms->cParams.chainLog; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
438 assert(ms->cParams.chainLog <= 24); in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
439 assert(ms->cParams.hashLog > ms->cParams.chainLog); in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
641 const U32 chainMask = (1 << cParams->chainLog) - 1; in ZSTD_insertAndFindFirstIndex_internal()
676 const U32 chainSize = (1 << cParams->chainLog); in ZSTD_HcFindBestMatch()
741 const U32 dmsChainSize = (1 << dms->cParams.chainLog); in ZSTD_HcFindBestMatch()
H A Dzstd_opt.c454 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1()
612 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches()
638 …U32 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btL… in ZSTD_insertBtAndGetAllMatches()
/linux-6.15/lib/zstd/
H A Dzstd_compress_module.c40 cctx, ZSTD_c_chainLog, parameters->cParams.chainLog)); in zstd_cctx_init()
/linux-6.15/include/linux/
H A Dzstd_lib.h1321 …unsigned chainLog; /*< fully searched segment : larger == more compression, slower, more me… member