Lines Matching refs:maxSymbolValue

3068     unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX;  in ZSTD_buildBlockEntropyStats_literals()  local
3095 …{ size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize,… in ZSTD_buildBlockEntropyStats_literals()
3110 …repeat_check && !HUF_validateCTable((HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue)) { in ZSTD_buildBlockEntropyStats_literals()
3116 huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3118 maxSymbolValue, huffLog, in ZSTD_buildBlockEntropyStats_literals()
3124 (HUF_CElt*)nextHuf->CTable, countWksp, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3127 (HUF_CElt*)nextHuf->CTable, maxSymbolValue, huffLog, in ZSTD_buildBlockEntropyStats_literals()
3132 (HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue); in ZSTD_buildBlockEntropyStats_literals()
3244 unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX; in ZSTD_estimateBlockSize_literal() local
3251 …size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize… in ZSTD_estimateBlockSize_literal()
3253 …SizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue); in ZSTD_estimateBlockSize_literal()
4300 …TD_dictNCountRepeat(short* normalizedCounter, unsigned dictMaxSymbolValue, unsigned maxSymbolValue) in ZSTD_dictNCountRepeat() argument
4303 if (dictMaxSymbolValue < maxSymbolValue) { in ZSTD_dictNCountRepeat()
4306 for (s = 0; s <= maxSymbolValue; ++s) { in ZSTD_dictNCountRepeat()
4324 { unsigned maxSymbolValue = 255; in ZSTD_loadCEntropy() local
4326 …t const hufHeaderSize = HUF_readCTable((HUF_CElt*)bs->entropy.huf.CTable, &maxSymbolValue, dictPtr, in ZSTD_loadCEntropy()
4335 RETURN_ERROR_IF(maxSymbolValue < 255, dictionary_corrupted, ""); in ZSTD_loadCEntropy()