Lines Matching refs:tableSize
94 U32 const tableSize = 1 << tableLog;
95 U32 const tableMask = tableSize - 1;
98 void *const FSCT = ((U32 *)ptr) + 1 /* header */ + (tableLog ? tableSize >> 1 : 1);
100 U32 const step = FSE_TABLESTEP(tableSize);
101 U32 highThreshold = tableSize - 1;
136 cumul[maxSymbolValue + 1] = tableSize + 1;
160 for (u = 0; u < tableSize; u++) {
162 tableU16[cumul[s]++] = (U16)(tableSize + u); /* TableU16 : sorted by symbol order; gives next state value */
210 const int tableSize = 1 << tableLog;
225 remaining = tableSize + 1; /* +1 for extra accuracy */
226 threshold = tableSize;
668 const unsigned tableSize = 1 << nbBits;
669 const unsigned tableMask = tableSize - 1;
673 void *const FSCT = ((U32 *)ptr) + 1 /* header */ + (tableSize >> 1); /* assumption : tableLog >= 1 */
686 for (s = 0; s < tableSize; s++)
687 tableU16[s] = (U16)(tableSize + s);