Searched refs:normalMatchPrice (Results 1 - 3 of 3) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Encoder.java | 666 int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_state]);
in GetOptimum() 677 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState);
in GetOptimum() 960 normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[state]);
in GetOptimum() 971 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(curBack, lenTest, posState);
in GetOptimum()
|
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaEncoder.cs | 666 UInt32 normalMatchPrice = matchPrice + _isRep[_state.Index].GetPrice0();
in GetOptimum() 677 UInt32 curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState);
in GetOptimum() 960 normalMatchPrice = matchPrice + _isRep[state.Index].GetPrice0();
in GetOptimum() 971 UInt32 curAndLenPrice = normalMatchPrice + GetPosLenPrice(curBack, lenTest, posState);
in GetOptimum()
|
/third_party/lzma/C/ |
H A D | LzmaEnc.c | 1379 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]);
in GetOptimum() local 1391 UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len);
in GetOptimum() 1844 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]);
in GetOptimum() local 1864 UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len);
in GetOptimum()
|
Completed in 11 milliseconds