Lines Matching defs:tableLog
89 U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER;
123 tableLog = FSE_optimalTableLog(tableLog, wtSize, maxSymbolValue);
124 CHECK_F(FSE_normalizeCount(norm, tableLog, count, wtSize, maxSymbolValue));
128 CHECK_V_F(hSize, FSE_writeNCount(op, oend - op, norm, maxSymbolValue, tableLog));
133 CHECK_F(FSE_buildCTable_wksp(CTable, norm, maxSymbolValue, tableLog, workspace, workspaceSize));
207 U32 tableLog = 0;
223 readSize = HUF_readStats_wksp(huffWeight, HUF_SYMBOLVALUE_MAX + 1, rankVal, &nbSymbols, &tableLog, src, srcSize, workspace, workspaceSize);
228 if (tableLog > HUF_TABLELOG_MAX)
236 for (n = 1; n <= tableLog; n++) {
248 CTable[n].nbBits = (BYTE)(tableLog + 1 - w);
254 U16 nbPerRank[HUF_TABLELOG_MAX + 2] = {0}; /* support w=0=>n=tableLog+1 */
262 valPerRank[tableLog + 1] = 0; /* for w==0 */
266 for (n = tableLog; n > 0; n--) { /* start at n=tablelog <-> w=1 */