Home
last modified time | relevance | path

Searched refs:GetPosSlot (Results 1 – 3 of 3) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java35 static int GetPosSlot(int pos) in GetPosSlot() method in Encoder
1174 int posSlot = GetPosSlot(pos); in CodeOneBlock()
1318 int posSlot = GetPosSlot(i); in FillDistancesPrices()
1341 _distancesPrices[st2 + i] = _posSlotPrices[st + GetPosSlot(i)] + tempPrices[i]; in FillDistancesPrices()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs35 static UInt32 GetPosSlot(UInt32 pos) in GetPosSlot() method in SevenZip.Compression.LZMA.Encoder
1176 UInt32 posSlot = GetPosSlot(pos); in CodeOneBlock()
1318 UInt32 posSlot = GetPosSlot(i); in FillDistancesPrices()
1341 _distancesPrices[st2 + i] = _posSlotPrices[st + GetPosSlot(i)] + tempPrices[i]; in FillDistancesPrices()
/external/lzma/C/
DLzmaEnc.c120 #define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res); } macro
170 #define GetPosSlot(pos, res) { if (pos < kNumFullDistances) res = p->g_FastPos[pos]; else BSR2_RET(… macro
1904 GetPosSlot(pos, posSlot); in LzmaEnc_CodeOneBlock()