Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dhuf_compress.c1293 unsigned optLog = maxTableLog, optLogGuess; in HUF_optimalTableLog() local
1298 for (optLogGuess = minTableLog; optLogGuess <= maxTableLog; optLogGuess++) { in HUF_optimalTableLog()
1299 DEBUGLOG(7, "checking for huffLog=%u", optLogGuess); in HUF_optimalTableLog()
1301 …{ size_t maxBits = HUF_buildCTable_wksp(table, count, maxSymbolValue, optLogGuess, workSpace, wk… in HUF_optimalTableLog()
1304 if (maxBits < optLogGuess && optLogGuess > minTableLog) break; in HUF_optimalTableLog()
1319 optLog = optLogGuess; in HUF_optimalTableLog()