Searched refs:chainLog (Results 1 – 6 of 6) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_double_fast.c | 27 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 D | zstd_compress.c | 788 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() 1135 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_chainLog, (int)cparams.chainLog), ""); in ZSTD_CCtx_setCParams() 1327 BOUNDCHECK(ZSTD_c_chainLog, (int)cParams.chainLog); in ZSTD_checkCParams() 1350 CLAMP(ZSTD_c_chainLog, cParams.chainLog); in ZSTD_clampCParams() 1499 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() 1502 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal() 1516 if (cPar.chainLog > maxShortCacheHashLog) { in ZSTD_adjustCParams_internal() 1517 cPar.chainLog = maxShortCacheHashLog; in ZSTD_adjustCParams_internal() [all …]
|
| H A D | zstd_lazy.c | 39 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 D | zstd_opt.c | 454 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/lib/zstd/ |
| H A D | zstd_compress_module.c | 40 cctx, ZSTD_c_chainLog, parameters->cParams.chainLog)); in zstd_cctx_init()
|
| /linux/include/linux/ |
| H A D | zstd_lib.h | 1321 …unsigned chainLog; /*< fully searched segment : larger == more compression, slower, more me… member
|