Lines Matching refs:posSlot
1046 UInt32 posSlot = (1 << Base.kNumPosSlotBits) - 1;
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
1176 UInt32 posSlot = GetPosSlot(pos);
1178 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
1180 if (posSlot >= Base.kStartPosModelIndex)
1182 int footerBits = (int)((posSlot >> 1) - 1);
1183 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits);
1186 if (posSlot < Base.kEndPosModelIndex)
1188 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced);
1318 UInt32 posSlot = GetPosSlot(i);
1319 int footerBits = (int)((posSlot >> 1) - 1);
1320 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits);
1322 baseVal - posSlot - 1, footerBits, i - baseVal);
1327 UInt32 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) << RangeCoder.BitEncoder.kNumBitPriceShiftBits);