Lines Matching refs:symbol
48 uint symbol = Base.kNumLowLenSymbols;
50 symbol += m_MidCoder[posState].Decode(rangeDecoder);
53 symbol += Base.kNumMidLenSymbols;
54 symbol += m_HighCoder.Decode(rangeDecoder);
56 return symbol;
71 uint symbol = 1;
73 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
74 while (symbol < 0x100);
75 return (byte)symbol;
80 uint symbol = 1;
85 uint bit = m_Decoders[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder);
86 symbol = (symbol << 1) | bit;
89 while (symbol < 0x100)
90 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
94 while (symbol < 0x100);
95 return (byte)symbol;