Lines Matching defs:tableLog
88 size_t FSE_buildDTable_wksp(FSE_DTable *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace, size_t workspaceSize)
95 U32 const tableSize = 1 << tableLog;
103 if (tableLog > FSE_MAX_TABLELOG)
109 DTableH.tableLog = (U16)tableLog;
112 S16 const largeLimit = (S16)(1 << (tableLog - 1));
152 tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState));
170 DTableH->tableLog = 0;
196 DTableH->tableLog = (U16)nbBits;
291 unsigned tableLog;
312 NCountLength = FSE_readNCount(counting, &maxSymbolValue, &tableLog, istart, cSrcSize);
317 if (tableLog > maxLog)
322 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize));