Lines Matching refs:maxSymbolValue
493 …ildDTable ( FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tabl…
830 #define FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) (1 + (1<<(maxTableLog-1)) + ((maxSymbolV… argument
1073 …buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tabl… in FSE_buildDTable() argument
1089 if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge); in FSE_buildDTable()
1093 …memset(tableDecode, 0, sizeof(FSE_DECODE_TYPE) * (maxSymbolValue+1) ); /* useless init, but keep… in FSE_buildDTable()
1095 for (s=0; s<=maxSymbolValue; s++) in FSE_buildDTable()
1110 for (s=0; s<=maxSymbolValue; s++) in FSE_buildDTable()
1298 const unsigned maxSymbolValue = tableMask; in FSE_buildDTable_raw() local
1307 for (s=0; s<=maxSymbolValue; s++) in FSE_buildDTable_raw()
1410 unsigned maxSymbolValue = FSE_MAX_SYMBOL_VALUE; in FSE_decompress() local
1416 errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); in FSE_decompress()
1422 errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); in FSE_decompress()