Home
last modified time | relevance | path

Searched refs:repMatchPrice (Results 1 – 4 of 4) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java613 …int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]); in GetOptimum() local
617 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState); in GetOptimum()
650 int price = repMatchPrice + GetPureRepPrice(i, _state, posState); in GetOptimum()
824 repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state]); in GetOptimum()
829 int shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState); in GetOptimum()
891 int curAndLenPrice = repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState); in GetOptimum()
918 repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState) + in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs613 UInt32 repMatchPrice = matchPrice + _isRep[_state.Index].GetPrice1(); in GetOptimum()
617 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState); in GetOptimum()
650 UInt32 price = repMatchPrice + GetPureRepPrice(i, _state, posState); in GetOptimum()
824 repMatchPrice = matchPrice + _isRep[state.Index].GetPrice1(); in GetOptimum()
829 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState); in GetOptimum()
891 UInt32 curAndLenPrice = repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState); in GetOptimum()
918 repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState) + in GetOptimum()
/external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
DEncoder.java554 …int repMatchPrice = matchPrice + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice1(_… in GetOptimum() local
557 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState); in GetOptimum()
586 int price = repMatchPrice + GetPureRepPrice(i, _state, posState); in GetOptimum()
731repMatchPrice = matchPrice + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice1(_isRe… in GetOptimum()
734 int shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState); in GetOptimum()
787 int curAndLenPrice = repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState); in GetOptimum()
808 int curAndLenCharPrice = repMatchPrice in GetOptimum()
/external/lzma/C/
DLzmaEnc.c945 UInt32 matchPrice, repMatchPrice, normalMatchPrice; in GetOptimum() local
1035 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]); in GetOptimum()
1039 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, p->state, posState); in GetOptimum()
1069 price = repMatchPrice + GetPureRepPrice(p, i, p->state, posState); in GetOptimum()
1140 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice; in GetOptimum() local
1256 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]); in GetOptimum()
1260 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, state, posState); in GetOptimum()
1335 price = repMatchPrice + GetPureRepPrice(p, repIndex, state, posState); in GetOptimum()