Lines Matching refs:hashLog
97 size_t const hSize = ((size_t)1) << cParams.hashLog; in ZSTD_CCtxWorkspaceBound()
157 CLAMPCHECK(cParams.hashLog, ZSTD_HASHLOG_MIN, ZSTD_HASHLOG_MAX); in ZSTD_checkCParams()
168 static U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat) in ZSTD_cycleLog() argument
171 return hashLog - btScale; in ZSTD_cycleLog()
195 if (cPar.hashLog > cPar.windowLog) in ZSTD_adjustCParams()
196 cPar.hashLog = cPar.windowLog; in ZSTD_adjustCParams()
211 …return (param1.cParams.hashLog == param2.cParams.hashLog) & (param1.cParams.chainLog == param2.cPa… in ZSTD_equivalentParams()
257 size_t const hSize = ((size_t)1) << params.cParams.hashLog; in ZSTD_resetCCtx_advanced()
363 size_t const hSize = ((size_t)1) << srcCCtx->params.cParams.hashLog; in ZSTD_copyCCtx()
413 U32 const hSize = 1 << zc->params.cParams.hashLog; in ZSTD_reduceIndex()
995 U32 const hBits = zc->params.cParams.hashLog; in ZSTD_fillHashTable()
1011 U32 const hBits = cctx->params.cParams.hashLog; in ZSTD_compressBlock_fast_generic()
1119 const U32 hBits = ctx->params.cParams.hashLog; in ZSTD_compressBlock_fast_extDict_generic()
1238 U32 const hBitsL = cctx->params.cParams.hashLog; in ZSTD_fillDoubleHashTable()
1257 const U32 hBitsL = cctx->params.cParams.hashLog; in ZSTD_compressBlock_doubleFast_generic()
1398 U32 const hBitsL = ctx->params.cParams.hashLog; in ZSTD_compressBlock_doubleFast_extDict_generic()
1564 U32 const hashLog = zc->params.cParams.hashLog; in ZSTD_insertBt1() local
1565 size_t const h = ZSTD_hashPtr(ip, hashLog, mls); in ZSTD_insertBt1()
1647 U32 const hashLog = zc->params.cParams.hashLog; in ZSTD_insertBtAndFindBestMatch() local
1648 size_t const h = ZSTD_hashPtr(ip, hashLog, mls); in ZSTD_insertBtAndFindBestMatch()
1799 const U32 hashLog = zc->params.cParams.hashLog; in ZSTD_insertAndFindFirstIndex() local
1807 size_t const h = ZSTD_hashPtr(base + idx, hashLog, mls); in ZSTD_insertAndFindFirstIndex()
1814 return hashTable[ZSTD_hashPtr(ip, hashLog, mls)]; in ZSTD_insertAndFindFirstIndex()
2378 …U32 const cycleMask = (1 << ZSTD_cycleLog(cctx->params.cParams.hashLog, cctx->params.cParams.strat… in ZSTD_compress_generic()
3426 if (cp.hashLog > ZSTD_HASHLOG_MAX) in ZSTD_getCParams()
3427 cp.hashLog = ZSTD_HASHLOG_MAX; in ZSTD_getCParams()