Lines Matching defs:hashLog3
47 * The actual (selected) size of the hash table is then stored in ZSTD_matchState_t.hashLog3,
1358 U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
1359 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0;
1656 U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
1657 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0;
1666 ms->hashLog3 = hashLog3;
2076 { int const h3log = cctx->blockState.matchState.hashLog3;
2078 assert(cdict->matchState.hashLog3 == 0);
2157 assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3);
2169 int const h3log = srcCCtx->blockState.matchState.hashLog3;
2284 if (ms->hashLog3) {
2285 U32 const h3Size = (U32)1 << ms->hashLog3;