Searched refs:repIndex (Results 1 - 4 of 4) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
H A DEncoder.java424 int GetPureRepPrice (int repIndex, int state, int posState) { argument
426 if (repIndex == 0) {
432 if (repIndex == 1)
436 price += com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice(_isRepG2[state], repIndex - 2);
442 int GetRepPrice (int repIndex, int len, int state, int posState) { argument
444 return price + GetPureRepPrice(repIndex, state, posState);
780 for (int repIndex = 0; repIndex < Base.kNumRepDistances; repIndex++) {
781 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableByte
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs461 UInt32 GetPureRepPrice(UInt32 repIndex, Base.State state, UInt32 posState) argument
464 if (repIndex == 0)
472 if (repIndex == 1)
477 price += _isRepG2[state.Index].GetPrice(repIndex - 2);
483 UInt32 GetRepPrice(UInt32 repIndex, UInt32 len, Base.State state, UInt32 posState) argument
486 return price + GetPureRepPrice(repIndex, state, posState);
881 for (UInt32 repIndex = 0; repIndex < Base.kNumRepDistances; repIndex++)
883 UInt32 lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableByte
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java461 int GetPureRepPrice(int repIndex, int state, int posState) argument
464 if (repIndex == 0)
472 if (repIndex == 1)
477 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(_isRepG2[state], repIndex - 2);
483 int GetRepPrice(int repIndex, int len, int state, int posState) argument
486 return price + GetPureRepPrice(repIndex, state, posState);
881 for (int repIndex = 0; repIndex < Base.kNumRepDistances; repIndex++)
883 int lenTest = _matchFinder.GetMatchLen(0 - 1, reps[repIndex], numAvailableByte
[all...]
/external/lzma/C/
H A DLzmaEnc.c876 static UInt32 GetPureRepPrice(CLzmaEnc *p, UInt32 repIndex, UInt32 state, UInt32 posState) argument
879 if (repIndex == 0)
887 if (repIndex == 1)
892 price += GET_PRICE(p->isRepG2[state], repIndex - 2);
898 static UInt32 GetRepPrice(CLzmaEnc *p, UInt32 repIndex, UInt32 len, UInt32 state, UInt32 posState) argument
901 GetPureRepPrice(p, repIndex, state, posState);
1322 UInt32 repIndex; local
1323 for (repIndex = 0; repIndex < LZMA_NUM_REPS; repIndex
1504 UInt32 numAvail, mainLen, mainDist, numPairs, repIndex, repLen, i; local
[all...]

Completed in 47 milliseconds