Lines Matching refs:posSlot
1046 int posSlot = (1 << Base.kNumPosSlotBits) - 1;
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
1174 int posSlot = GetPosSlot(pos);
1176 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
1178 if (posSlot >= Base.kStartPosModelIndex)
1180 int footerBits = (int)((posSlot >> 1) - 1);
1181 int baseVal = ((2 | (posSlot & 1)) << footerBits);
1184 if (posSlot < Base.kEndPosModelIndex)
1186 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced);
1318 int posSlot = GetPosSlot(i);
1319 int footerBits = (int)((posSlot >> 1) - 1);
1320 int baseVal = ((2 | (posSlot & 1)) << footerBits);
1322 baseVal - posSlot - 1, footerBits, i - baseVal);
1327 int posSlot;
1331 for (posSlot = 0; posSlot < _distTableSize; posSlot++)
1332 _posSlotPrices[st + posSlot] = encoder.GetPrice(posSlot);
1333 for (posSlot = Base.kEndPosModelIndex; posSlot < _distTableSize; posSlot++)
1334 _posSlotPrices[st + posSlot] += ((((posSlot >> 1) - 1) - Base.kNumAlignBits) << SevenZip.Compression.RangeCoder.Encoder.kNumBitPriceShiftBits);