Home
last modified time | relevance | path

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

/src/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c387 U32 const hashLog3 = ms->hashLog3; in ZSTD_insertAndFindFirstIndexHash3() local
391 size_t const hash3 = ZSTD_hash3Ptr(ip, hashLog3); in ZSTD_insertAndFindFirstIndexHash3()
392 assert(hashLog3 > 0); in ZSTD_insertAndFindFirstIndexHash3()
395 hashTable3[ZSTD_hash3Ptr(base+idx, hashLog3)] = idx; in ZSTD_insertAndFindFirstIndexHash3()
H A Dzstd_compress.c1427 …U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->window… in ZSTD_sizeof_matchState() local
1428 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_sizeof_matchState()
1735 …U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HAS… in ZSTD_reset_matchState() local
1736 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_reset_matchState()
1745 ms->hashLog3 = hashLog3; in ZSTD_reset_matchState()
2155 { int const h3log = cctx->blockState.matchState.hashLog3; in ZSTD_resetCCtx_byCopyingCDict()
2157 assert(cdict->matchState.hashLog3 == 0); in ZSTD_resetCCtx_byCopyingCDict()
2236 assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3); in ZSTD_copyCCtx_internal()
2248 int const h3log = srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal()
2375 if (ms->hashLog3) { in ZSTD_reduceIndex()
[all …]
H A Dzstd_compress_internal.h218 … U32 hashLog3; /* dispatch table for matches of len==3 : larger == faster, more memory */ member
/src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_opt.c417 U32 const hashLog3 = ms->hashLog3; in ZSTD_insertAndFindFirstIndexHash3() local
421 size_t const hash3 = ZSTD_hash3Ptr(ip, hashLog3); in ZSTD_insertAndFindFirstIndexHash3()
422 assert(hashLog3 > 0); in ZSTD_insertAndFindFirstIndexHash3()
425 hashTable3[ZSTD_hash3Ptr(base+idx, hashLog3)] = idx; in ZSTD_insertAndFindFirstIndexHash3()
H A Dzstd_compress.c1665 …U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->window… in ZSTD_sizeof_matchState() local
1666 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_sizeof_matchState()
2000 …U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HAS… in ZSTD_reset_matchState() local
2001 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_reset_matchState()
2010 ms->hashLog3 = hashLog3; in ZSTD_reset_matchState()
2459 assert(cctx->blockState.matchState.hashLog3 <= 31); in ZSTD_resetCCtx_byCopyingCDict()
2460 { U32 const h3log = cctx->blockState.matchState.hashLog3; in ZSTD_resetCCtx_byCopyingCDict()
2462 assert(cdict->matchState.hashLog3 == 0); in ZSTD_resetCCtx_byCopyingCDict()
2542 assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3); in ZSTD_copyCCtx_internal()
2554 U32 const h3log = srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal()
[all …]
H A Dzstd_compress_internal.h283 … U32 hashLog3; /* dispatch table for matches of len==3 : larger == faster, more memory */ member