Lines Matching defs:targetTableLog
295 * Increase the tableLog to targetTableLog and rescales the stats.
296 * If tableLog > targetTableLog this is a no-op.
299 static U32 HUF_rescaleStats(BYTE* huffWeight, U32* rankVal, U32 nbSymbols, U32 tableLog, U32 targetTableLog)
301 if (tableLog > targetTableLog)
303 if (tableLog < targetTableLog) {
304 U32 const scale = targetTableLog - tableLog;
314 for (s = targetTableLog; s > scale; --s) {
321 return targetTableLog;
360 U32 const targetTableLog = MIN(maxTableLog, HUF_DECODER_FAST_TABLELOG);
361 tableLog = HUF_rescaleStats(wksp->huffWeight, wksp->rankVal, nbSymbols, tableLog, targetTableLog);