Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/dictBuilder/
H A Dzdict.c229 U32 cumulLength[LLIMIT] = {0}; in ZDICT_analyzePos() local
345 memset(cumulLength, 0, sizeof(cumulLength)); in ZDICT_analyzePos()
346 cumulLength[maxLength-1] = lengthList[maxLength-1]; in ZDICT_analyzePos()
348 cumulLength[i] = cumulLength[i+1] + lengthList[i]; in ZDICT_analyzePos()
350 for (i=LLIMIT-1; i>=MINMATCHLENGTH; i--) if (cumulLength[i]>=minRatio) break; in ZDICT_analyzePos()