Home | History | Annotate | Download | only in RangeCoder

Lines Matching refs:symbol

20 	public void Encode(Encoder rangeEncoder, int symbol) throws IOException

26 int bit = (symbol >>> bitIndex) & 1;
32 public void ReverseEncode(Encoder rangeEncoder, int symbol) throws IOException
37 int bit = symbol & 1;
40 symbol >>= 1;
44 public int GetPrice(int symbol)
51 int bit = (symbol >>> bitIndex) & 1;
58 public int ReverseGetPrice(int symbol)
64 int bit = symbol & 1;
65 symbol >>>= 1;
73 int NumBitLevels, int symbol)
79 int bit = symbol & 1;
80 symbol >>>= 1;
88 Encoder rangeEncoder, int NumBitLevels, int symbol) throws IOException
93 int bit = symbol & 1;
96 symbol >>= 1;