Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c246 #define LLIMIT 64 /* heuristic determined experimentally */ macro
253 U32 lengthList[LLIMIT] = {0}; in ZDICT_analyzePos()
254 U32 cumulLength[LLIMIT] = {0}; in ZDICT_analyzePos()
255 U32 savings[LLIMIT] = {0}; in ZDICT_analyzePos()
257 size_t maxLength = LLIMIT; in ZDICT_analyzePos()
354 if (length >= LLIMIT) length = LLIMIT-1; in ZDICT_analyzePos()
363 if (length >= LLIMIT) length = LLIMIT - 1; in ZDICT_analyzePos()
375 for (i=LLIMIT-1; i>=MINMATCHLENGTH; i--) if (cumulLength[i]>=minRatio) break; in ZDICT_analyzePos()