Home
last modified time | relevance | path

Searched refs:btLog (Results 1 – 2 of 2) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_lazy.c39 U32 const btLog = cParams->chainLog - 1; in ZSTD_updateDUBT() local
40 U32 const btMask = (1 << btLog) - 1; in ZSTD_updateDUBT()
82 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertDUBT1() local
83 U32 const btMask = (1 << btLog) - 1; in ZSTD_insertDUBT1()
191 U32 const btLog = dmsCParams->chainLog - 1; in ZSTD_DUBT_findBetterDictMatch() local
192 U32 const btMask = (1 << btLog) - 1; in ZSTD_DUBT_findBetterDictMatch()
261 U32 const btLog = cParams->chainLog - 1; in ZSTD_DUBT_findBestMatch() local
262 U32 const btMask = (1 << btLog) - 1; in ZSTD_DUBT_findBestMatch()
H A Dzstd_opt.c454 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1() local
455 U32 const btMask = (1 << btLog) - 1; in ZSTD_insertBt1()
612 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches() local
613 U32 const btMask= (1U << btLog) - 1; in ZSTD_insertBtAndGetAllMatches()
638 …2 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btLog; in ZSTD_insertBtAndGetAllMatches()