Lines Matching refs:maxSymbolValue

2977     unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX;  in ZSTD_buildBlockEntropyStats_literals()  local
3004 …{ size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize,… in ZSTD_buildBlockEntropyStats_literals()
3019 …repeat_check && !HUF_validateCTable((HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue)) { in ZSTD_buildBlockEntropyStats_literals()
3025 huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3027 maxSymbolValue, huffLog, in ZSTD_buildBlockEntropyStats_literals()
3033 (HUF_CElt*)nextHuf->CTable, countWksp, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3036 (HUF_CElt*)nextHuf->CTable, maxSymbolValue, huffLog, in ZSTD_buildBlockEntropyStats_literals()
3041 (HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3153 unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX; in ZSTD_estimateBlockSize_literal() local
3160 …size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize… in ZSTD_estimateBlockSize_literal()
3162 …SizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue); in ZSTD_estimateBlockSize_literal()
4209 …TD_dictNCountRepeat(short* normalizedCounter, unsigned dictMaxSymbolValue, unsigned maxSymbolValue) in ZSTD_dictNCountRepeat() argument
4212 if (dictMaxSymbolValue < maxSymbolValue) { in ZSTD_dictNCountRepeat()
4215 for (s = 0; s <= maxSymbolValue; ++s) { in ZSTD_dictNCountRepeat()
4233 { unsigned maxSymbolValue = 255; in ZSTD_loadCEntropy() local
4235 …t const hufHeaderSize = HUF_readCTable((HUF_CElt*)bs->entropy.huf.CTable, &maxSymbolValue, dictPtr, in ZSTD_loadCEntropy()
4244 RETURN_ERROR_IF(maxSymbolValue < 255, dictionary_corrupted, ""); in ZSTD_loadCEntropy()