OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hashLog3
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/compress/
zstd_opt.c
416
U32 const
hashLog3
= ms->
hashLog3
;
420
size_t const hash3 = ZSTD_hash3Ptr(ip,
hashLog3
);
421
assert(
hashLog3
> 0);
424
hashTable3[ZSTD_hash3Ptr(base+idx,
hashLog3
)] = idx;
zstd_compress.c
52
* The actual (selected) size of the hash table is then stored in ZSTD_MatchState_t.
hashLog3
,
1664
U32 const
hashLog3
= (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
1665
size_t const h3Size =
hashLog3
? ((size_t)1) <<
hashLog3
: 0;
1999
U32 const
hashLog3
= ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0;
2000
size_t const h3Size =
hashLog3
? ((size_t)1) <<
hashLog3
: 0;
2009
ms->
hashLog3
=
hashLog3
;
2458
assert(cctx->blockState.matchState.
hashLog3
<= 31)
[
all
...]
zstd_compress_internal.h
282
U32
hashLog3
; /* dispatch table for matches of len==3 : larger == faster, more memory */
Completed in 22 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026