Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/dictBuilder/
H A Dzdict.c717 U32 offcodeMax = ZSTD_highbit32((U32)(dictBufferSize + 128 KB)); in ZDICT_analyzeEntropy() local
735 …if (offcodeMax>OFFCODE_MAX) { eSize = ERROR(dictionaryCreation_failed); goto _cleanup; } /* too … in ZDICT_analyzeEntropy()
737 for (u=0; u<=offcodeMax; u++) offcodeCount[u] = 1; in ZDICT_analyzeEntropy()
787 total=0; for (u=0; u<=offcodeMax; u++) total+=offcodeCount[u]; in ZDICT_analyzeEntropy()
788 …errorCode = FSE_normalizeCount(offcodeNCount, Offlog, offcodeCount, total, offcodeMax, /* useLowPr… in ZDICT_analyzeEntropy()
/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_compress.c3241 U32 offcodeMax = MaxOff; in ZSTD_loadCEntropy() local
3244offcodeMax = ZSTD_highbit32(maxOffset); /* Calculate minimum offset code required to represent max… in ZSTD_loadCEntropy()
3247 …ffcode_repeatMode = ZSTD_dictNCountRepeat(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)); in ZSTD_loadCEntropy()