Home
last modified time | relevance | path

Searched refs:hashLog3 (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_compress.c1236 …U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->window… in ZSTD_sizeof_matchState() local
1237 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_sizeof_matchState()
1493 …U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HAS… in ZSTD_reset_matchState() local
1494 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_reset_matchState()
1502 ms->hashLog3 = hashLog3; in ZSTD_reset_matchState()
1860 { int const h3log = cctx->blockState.matchState.hashLog3; in ZSTD_resetCCtx_byCopyingCDict()
1862 assert(cdict->matchState.hashLog3 == 0); in ZSTD_resetCCtx_byCopyingCDict()
1935 assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3); in ZSTD_copyCCtx_internal()
1943 int const h3log = srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal()
2051 if (ms->hashLog3) { in ZSTD_reduceIndex()
[all …]
Dzstd_opt.c358 U32 const hashLog3 = ms->hashLog3; in ZSTD_insertAndFindFirstIndexHash3() local
362 size_t const hash3 = ZSTD_hash3Ptr(ip, hashLog3); in ZSTD_insertAndFindFirstIndexHash3()
363 assert(hashLog3 > 0); in ZSTD_insertAndFindFirstIndexHash3()
366 hashTable3[ZSTD_hash3Ptr(base+idx, hashLog3)] = idx; in ZSTD_insertAndFindFirstIndexHash3()
Dzstd_compress_internal.h156 … U32 hashLog3; /* dispatch table for matches of len==3 : larger == faster, more memory */ member