Lines Matching refs:tableLog
95 … *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace,… in FSE_buildDTable_wksp() argument
102 U32 const tableSize = 1 << tableLog; in FSE_buildDTable_wksp()
110 if (tableLog > FSE_MAX_TABLELOG) in FSE_buildDTable_wksp()
116 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable_wksp()
119 S16 const largeLimit = (S16)(1 << (tableLog - 1)); in FSE_buildDTable_wksp()
159 tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState)); in FSE_buildDTable_wksp()
177 DTableH->tableLog = 0; in FSE_buildDTable_rle()
203 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw()
298 unsigned tableLog; in FSE_decompress_wksp() local
319 NCountLength = FSE_readNCount(counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress_wksp()
324 if (tableLog > maxLog) in FSE_decompress_wksp()
329 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize)); in FSE_decompress_wksp()