Lines Matching defs:symbol
361 * Calculate cumulative frequency for next symbol. Does NO update!
389 * @param sy_f the interval length (frequency of the symbol)
446 * Decode symbol
455 int symbol, cf;
460 symbol= cf - 65535 + 63;
464 return symbol;
466 /* figure out the symbol inefficiently; a binary search would be much better */
467 for (symbol = 0; counts[symbol + 1] <= cf; symbol++);
469 range_decode_update(ctx, counts_diff[symbol], counts[symbol]);
471 return symbol;