• Home
  • Raw
  • Download

Lines Matching refs:posSlot

1463       UInt32 offs, curBack, posSlot;  in GetOptimum()  local
1472 GetPosSlot2(curBack, posSlot); in GetOptimum()
1482 … curAndLenPrice += p->posSlotPrices[lenToPosState][posSlot] + p->alignPrices[curBack & kAlignMask]; in GetOptimum()
1545 GetPosSlot2(curBack, posSlot); in GetOptimum()
1713 UInt32 posSlot = GetPosSlot1(i); in FillDistancesPrices() local
1714 UInt32 footerBits = ((posSlot >> 1) - 1); in FillDistancesPrices()
1715 UInt32 base = ((2 | (posSlot & 1)) << footerBits); in FillDistancesPrices()
1716 …tempPrices[i] = RcTree_ReverseGetPrice(p->posEncoders + base - posSlot - 1, footerBits, i - base, … in FillDistancesPrices()
1721 UInt32 posSlot; in FillDistancesPrices() local
1724 for (posSlot = 0; posSlot < p->distTableSize; posSlot++) in FillDistancesPrices()
1725 posSlotPrices[posSlot] = RcTree_GetPrice(encoder, kNumPosSlotBits, posSlot, p->ProbPrices); in FillDistancesPrices()
1726 for (posSlot = kEndPosModelIndex; posSlot < p->distTableSize; posSlot++) in FillDistancesPrices()
1727 posSlotPrices[posSlot] += ((((posSlot >> 1) - 1) - kNumAlignBits) << kNumBitPriceShiftBits); in FillDistancesPrices()
1899 UInt32 posSlot; in LzmaEnc_CodeOneBlock() local
1904 GetPosSlot(pos, posSlot); in LzmaEnc_CodeOneBlock()
1905 RcTree_Encode(&p->rc, p->posSlotEncoder[GetLenToPosState(len)], kNumPosSlotBits, posSlot); in LzmaEnc_CodeOneBlock()
1907 if (posSlot >= kStartPosModelIndex) in LzmaEnc_CodeOneBlock()
1909 UInt32 footerBits = ((posSlot >> 1) - 1); in LzmaEnc_CodeOneBlock()
1910 UInt32 base = ((2 | (posSlot & 1)) << footerBits); in LzmaEnc_CodeOneBlock()
1913 if (posSlot < kEndPosModelIndex) in LzmaEnc_CodeOneBlock()
1914 … RcTree_ReverseEncode(&p->rc, p->posEncoders + base - posSlot - 1, footerBits, posReduced); in LzmaEnc_CodeOneBlock()