Searched refs:repMatchPrice (Results 1 - 3 of 3) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Encoder.java | 613 int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]);
in GetOptimum() 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()
|
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaEncoder.cs | 613 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()
|
/third_party/lzma/C/ |
H A D | LzmaEnc.c | 1229 UInt32 matchPrice, repMatchPrice;
in GetOptimum() local 1323 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]);
in GetOptimum() 1328 UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, p->state, posState);
in GetOptimum() 1356 price = repMatchPrice + GetPrice_PureRep(p, i, p->state, posState);
in GetOptimum() 1447 UInt32 litPrice, matchPrice, repMatchPrice;
in GetOptimum() local 1627 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]);
in GetOptimum() 1640 if (repMatchPrice < nextOpt->price) // 18.new
in GetOptimum() 1650 UInt32 shortRepPrice = repMatchPrice + GetPrice_ShortRep(p, state, posState);
in GetOptimum() 1744 price = repMatchPrice + GetPrice_PureRep(p, repIndex, state, posState);
in GetOptimum()
|
Completed in 8 milliseconds