Home | History | Annotate | Download | only in LZMA

Lines Matching refs:symbol

42 			int symbol = Base.kNumLowLenSymbols;

44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
47 return symbol;
64 int symbol = 1;
66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
67 while (symbol < 0x100);
68 return (byte)symbol;
73 int symbol = 1;
78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol);
79 symbol = (symbol << 1) | bit;
82 while (symbol < 0x100)
83 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
87 while (symbol < 0x100);
88 return (byte)symbol;