Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_lazy.c29 U32 const btLog = cParams->chainLog - 1; in ZSTD_updateDUBT()
71 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertDUBT1()
179 U32 const btLog = dmsCParams->chainLog - 1; in ZSTD_DUBT_findBetterDictMatch()
248 U32 const btLog = cParams->chainLog - 1; in ZSTD_DUBT_findBestMatch()
458 const U32 chainMask = (1 << cParams->chainLog) - 1; in ZSTD_insertAndFindFirstIndex_internal()
485 U32 const chainSize = 1 << ms->cParams.chainLog; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
506 assert(ms->cParams.chainLog <= 24); in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
507 assert(ms->cParams.hashLog >= ms->cParams.chainLog); in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
605 const U32 chainSize = (1 << cParams->chainLog); in ZSTD_HcFindBestMatch_generic()
750 const U32 dmsChainSize = (1 << dms->cParams.chainLog); in ZSTD_HcFindBestMatch_generic()
H A Dzstd_double_fast.c23 U32 const hBitsS = cParams->chainLog; in ZSTD_fillDoubleHashTable()
60 const U32 hBitsS = cParams->chainLog; in ZSTD_compressBlock_doubleFast_generic()
96 dictCParams->chainLog : hBitsS; in ZSTD_compressBlock_doubleFast_generic()
368 U32 const hBitsS = cParams->chainLog; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_compress.c627 CCtxParams->cParams.chainLog = (U32)value; in ZSTD_CCtxParams_setParameter()
628 return CCtxParams->cParams.chainLog; in ZSTD_CCtxParams_setParameter()
822 *value = (int)CCtxParams->cParams.chainLog; in ZSTD_CCtxParams_getParameter()
1101 BOUNDCHECK(ZSTD_c_chainLog, (int)cParams.chainLog); in ZSTD_checkCParams()
1123 CLAMP(ZSTD_c_chainLog, cParams.chainLog); in ZSTD_clampCParams()
1220 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal()
1248 if (overrides->chainLog) cParams->chainLog = overrides->chainLog; in ZSTD_overrideCParams()
1465 assert(cParams1.chainLog == cParams2.chainLog); in ZSTD_assertEqualCParams()
1883 assert(cctx->appliedParams.cParams.chainLog == cdict_cParams->chainLog); in ZSTD_resetCCtx_byCopyingCDict()
1974 assert(dstCCtx->appliedParams.cParams.chainLog == srcCCtx->appliedParams.cParams.chainLog); in ZSTD_copyCCtx_internal()
[all …]
H A Dzstd_opt.c379 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1()
529 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches()
555 …U32 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btL… in ZSTD_insertBtAndGetAllMatches()
H A Dzstdmt_compress.c1131 jobLog = MAX(21, ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy) + 3); in ZSTDMT_computeTargetJobLog()
/dragonfly/contrib/zstd/programs/
H A Dzstdcli.c542 …ingPtr, "chainLog=") || longCommandWArg(&stringPtr, "clog=")) { params->chainLog = readU32FromChar… in parseCompressionParameters()
557 …, chainLog=%d, hashLog=%d, searchLog=%d \n", params->windowLog, params->chainLog, params->hashLog,… in parseCompressionParameters()
1341 DISPLAY(" - chainLog : %u\n", cParams.chainLog); in main()
H A Dbenchzstd.c185 CHECK_Z(ZSTD_CCtx_setParameter(ctx, ZSTD_c_chainLog, (int)comprParams->chainLog)); in BMK_initCCtx()
H A Dfileio.c912 if (fileWindowLog > ZSTD_cycleLog(cParams.chainLog, cParams.strategy)) { in FIO_adjustParamsForPatchFromMode()
981 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_chainLog, (int)comprParams.chainLog) ); in FIO_createCResources()
/dragonfly/contrib/zstd/lib/
H A Dzstd.h1165 …unsigned chainLog; /**< fully searched segment : larger == more compression, slower, more m… member