Searched refs:m_Decoders (Results 1 – 2 of 2) sorted by relevance
65 BitDecoder[] m_Decoders; field66 public void Create() { m_Decoders = new BitDecoder[0x300]; } in Create()67 public void Init() { for (int i = 0; i < 0x300; i++) m_Decoders[i].Init(); } in Init()73 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder); in DecodeNormal()85 uint bit = m_Decoders[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder); in DecodeWithMatchByte()90 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder); in DecodeWithMatchByte()
55 short[] m_Decoders = new short[0x300]; field in Decoder.LiteralDecoder.Decoder259 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_Decoders); in Init()66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol); in DecodeNormal()78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol); in DecodeWithMatchByte()83 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol); in DecodeWithMatchByte()