Home
last modified time | relevance | path

Searched refs:repMatchPrice (Results 1 – 3 of 3) 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/lzma/C/
DLzmaEnc.c1128 UInt32 matchPrice, repMatchPrice; in GetOptimum() local
1218 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]); in GetOptimum()
1223 UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, p->state, posState); in GetOptimum()
1251 price = repMatchPrice + GetPrice_PureRep(p, i, p->state, posState); in GetOptimum()
1342 UInt32 litPrice, matchPrice, repMatchPrice; in GetOptimum() local
1522 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]); in GetOptimum()
1535 if (repMatchPrice < nextOpt->price) // 18.new in GetOptimum()
1545 UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, state, posState); in GetOptimum()
1639 price = repMatchPrice + GetPrice_PureRep(p, repIndex, state, posState); in GetOptimum()