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