Lines Matching refs:posSlot
1046 int posSlot = (1 << Base.kNumPosSlotBits) - 1; in WriteEndMarker() local
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot); in WriteEndMarker()
1174 int posSlot = GetPosSlot(pos); in CodeOneBlock() local
1176 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot); in CodeOneBlock()
1178 if (posSlot >= Base.kStartPosModelIndex) in CodeOneBlock()
1180 int footerBits = (int)((posSlot >> 1) - 1); in CodeOneBlock()
1181 int baseVal = ((2 | (posSlot & 1)) << footerBits); in CodeOneBlock()
1184 if (posSlot < Base.kEndPosModelIndex) in CodeOneBlock()
1186 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced); in CodeOneBlock()
1318 int posSlot = GetPosSlot(i); in FillDistancesPrices() local
1319 int footerBits = (int)((posSlot >> 1) - 1); in FillDistancesPrices()
1320 int baseVal = ((2 | (posSlot & 1)) << footerBits); in FillDistancesPrices()
1322 baseVal - posSlot - 1, footerBits, i - baseVal); in FillDistancesPrices()
1327 int posSlot; in FillDistancesPrices() local
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) << SevenZip.Compressi… in FillDistancesPrices()