Home
last modified time | relevance | path

Searched refs:curAnd1Price (Results 1 – 3 of 3) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java807 int curAnd1Price = curPrice + in GetOptimum() local
815 if (curAnd1Price < nextOptimum.Price) in GetOptimum()
817 nextOptimum.Price = curAnd1Price; in GetOptimum()
857 int nextRepMatchPrice = curAnd1Price + in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs807 UInt32 curAnd1Price = curPrice + in GetOptimum()
815 if (curAnd1Price < nextOptimum.Price) in GetOptimum()
817 nextOptimum.Price = curAnd1Price; in GetOptimum()
857 UInt32 nextRepMatchPrice = curAnd1Price + in GetOptimum()
/external/lzma/C/
DLzmaEnc.c1190 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice; in GetOptimum() local
1286 curAnd1Price = curPrice + GET_PRICE_0(p->isMatch[state][posState]); in GetOptimum()
1289 curAnd1Price += in GetOptimum()
1297 if (curAnd1Price < nextOpt->price) in GetOptimum()
1299 nextOpt->price = curAnd1Price; in GetOptimum()
1346 UInt32 nextRepMatchPrice = curAnd1Price + in GetOptimum()