Lines Matching refs:posSlot
1046 UInt32 posSlot = (1 << Base.kNumPosSlotBits) - 1; in WriteEndMarker()
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot); in WriteEndMarker()
1176 UInt32 posSlot = GetPosSlot(pos); in CodeOneBlock()
1178 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot); in CodeOneBlock()
1180 if (posSlot >= Base.kStartPosModelIndex) in CodeOneBlock()
1182 int footerBits = (int)((posSlot >> 1) - 1); in CodeOneBlock()
1183 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits); in CodeOneBlock()
1186 if (posSlot < Base.kEndPosModelIndex) in CodeOneBlock()
1188 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced); in CodeOneBlock()
1318 UInt32 posSlot = GetPosSlot(i); in FillDistancesPrices()
1319 int footerBits = (int)((posSlot >> 1) - 1); in FillDistancesPrices()
1320 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits); in FillDistancesPrices()
1322 baseVal - posSlot - 1, footerBits, i - baseVal); in FillDistancesPrices()
1327 UInt32 posSlot; in FillDistancesPrices()
1331 for (posSlot = 0; posSlot < _distTableSize; posSlot++) in FillDistancesPrices()
1332 _posSlotPrices[st + posSlot] = encoder.GetPrice(posSlot); in FillDistancesPrices()
1333 for (posSlot = Base.kEndPosModelIndex; posSlot < _distTableSize; posSlot++) in FillDistancesPrices()
1334 …_posSlotPrices[st + posSlot] += ((((posSlot >> 1) - 1) - Base.kNumAlignBits) << RangeCoder.BitEnco… in FillDistancesPrices()