Home | History | Annotate | Download | only in LZMA

Lines Matching refs:_posSlotPrices

337 		UInt32[] _posSlotPrices = new UInt32[1 << (Base.kNumPosSlotBits + Base.kNumLenToPosStatesBits)];

496 price = _posSlotPrices[(lenToPosState << Base.kNumPosSlotBits) + GetPosSlot2(pos)] +
1332 _posSlotPrices[st + posSlot] = encoder.GetPrice(posSlot);
1334 _posSlotPrices[st + posSlot] += ((((posSlot >> 1) - 1) - Base.kNumAlignBits) << RangeCoder.BitEncoder.kNumBitPriceShiftBits);
1339 _distancesPrices[st2 + i] = _posSlotPrices[st + i];
1341 _distancesPrices[st2 + i] = _posSlotPrices[st + GetPosSlot(i)] + tempPrices[i];