Lines Matching refs:tableLog
65 … *dt, const short *normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void *workspace,… in FSE_buildDTable_wksp() argument
72 U32 const tableSize = 1 << tableLog; in FSE_buildDTable_wksp()
80 if (tableLog > FSE_MAX_TABLELOG) in FSE_buildDTable_wksp()
86 DTableH.tableLog = (U16)tableLog; in FSE_buildDTable_wksp()
89 S16 const largeLimit = (S16)(1 << (tableLog - 1)); in FSE_buildDTable_wksp()
129 tableDecode[u].nbBits = (BYTE)(tableLog - BIT_highbit32((U32)nextState)); in FSE_buildDTable_wksp()
147 DTableH->tableLog = 0; in FSE_buildDTable_rle()
173 DTableH->tableLog = (U16)nbBits; in FSE_buildDTable_raw()
268 unsigned tableLog; in FSE_decompress_wksp() local
289 NCountLength = FSE_readNCount(counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress_wksp()
294 if (tableLog > maxLog) in FSE_decompress_wksp()
299 CHECK_F(FSE_buildDTable_wksp(dt, counting, maxSymbolValue, tableLog, workspace, workspaceSize)); in FSE_decompress_wksp()