Lines Matching refs:maxSymbolValue
2977 unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX;
3004 { size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize, workspace, wkspSize);
3019 if (repeat == HUF_repeat_check && !HUF_validateCTable((HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue)) {
3025 huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue);
3027 maxSymbolValue, huffLog,
3033 (HUF_CElt*)nextHuf->CTable, countWksp, maxSymbolValue);
3036 (HUF_CElt*)nextHuf->CTable, maxSymbolValue, huffLog,
3041 (HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue);
3153 unsigned maxSymbolValue = HUF_SYMBOLVALUE_MAX;
3160 size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize, workspace, wkspSize);
3162 { size_t cLitSizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue);
4209 static FSE_repeat ZSTD_dictNCountRepeat(short* normalizedCounter, unsigned dictMaxSymbolValue, unsigned maxSymbolValue)
4212 if (dictMaxSymbolValue < maxSymbolValue) {
4215 for (s = 0; s <= maxSymbolValue; ++s) {
4233 { unsigned maxSymbolValue = 255;
4235 size_t const hufHeaderSize = HUF_readCTable((HUF_CElt*)bs->entropy.huf.CTable, &maxSymbolValue, dictPtr,
4244 RETURN_ERROR_IF(maxSymbolValue < 255, dictionary_corrupted, "");