Home | History | Annotate | Download | only in LZMA

Lines Matching refs:new

13 			BitDecoder m_Choice = new BitDecoder();

14 BitDecoder m_Choice2 = new BitDecoder();
15 BitTreeDecoder[] m_LowCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
16 BitTreeDecoder[] m_MidCoder = new BitTreeDecoder[Base.kNumPosStatesMax];
17 BitTreeDecoder m_HighCoder = new BitTreeDecoder(Base.kNumHighLenBits);
24 m_LowCoder[posState] = new BitTreeDecoder(Base.kNumLowLenBits);
25 m_MidCoder[posState] = new BitTreeDecoder(Base.kNumMidLenBits);
66 public void Create() { m_Decoders = new BitDecoder[0x300]; }
113 m_Coders = new Decoder2[numStates];
135 LZ.OutWindow m_OutWindow = new LZ.OutWindow();
136 RangeCoder.Decoder m_RangeDecoder = new RangeCoder.Decoder();
138 BitDecoder[] m_IsMatchDecoders = new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax];
139 BitDecoder[] m_IsRepDecoders = new BitDecoder[Base.kNumStates];
140 BitDecoder[] m_IsRepG0Decoders = new BitDecoder[Base.kNumStates];
141 BitDecoder[] m_IsRepG1Decoders = new BitDecoder[Base.kNumStates];
142 BitDecoder[] m_IsRepG2Decoders = new BitDecoder[Base.kNumStates];
143 BitDecoder[] m_IsRep0LongDecoders = new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax];
145 BitTreeDecoder[] m_PosSlotDecoder = new BitTreeDecoder[Base.kNumLenToPosStates];
146 BitDecoder[] m_PosDecoders = new BitDecoder[Base.kNumFullDistances - Base.kEndPosModelIndex];
148 BitTreeDecoder m_PosAlignDecoder = new BitTreeDecoder(Base.kNumAlignBits);
150 LenDecoder m_LenDecoder = new LenDecoder();
151 LenDecoder m_RepLenDecoder = new LenDecoder();
153 LiteralDecoder m_LiteralDecoder = new LiteralDecoder();
164 m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
181 throw new InvalidParamException();
183 throw new InvalidParamException();
190 throw new InvalidParamException();
235 Base.State state = new Base.State();
244 throw new DataErrorException();
337 throw new DataErrorException();
352 throw new InvalidParamException();
358 throw new InvalidParamException();