Lines Matching defs:symbol
121 /* For explanations on how to distribute symbol values over the table :
122 * http://fastcompression.blogspot.fr/2014/02/fse-distributing-symbol-values.html */
124 /* symbol start positions */
129 if (normalizedCounter[u - 1] == -1) { /* Low proba symbol */
142 U32 symbol;
143 for (symbol = 0; symbol <= maxSymbolValue; symbol++) {
145 for (nbOccurences = 0; nbOccurences < normalizedCounter[symbol]; nbOccurences++) {
146 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol;
162 tableU16[cumul[s]++] = (U16)(tableSize + u); /* TableU16 : sorted by symbol order; gives next state value */
503 tableLog = minBits; /* Need a minimum to safely represent all symbol values */
701 /* fake FSE_CTable, for rle input (always same symbol) */