HomeSort by relevance Sort by last modified time
    Searched refs:nextOptimum (Results 1 - 2 of 2) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 812 Optimal nextOptimum = _optimum[cur + 1];
815 if (curAnd1Price < nextOptimum.Price)
817 nextOptimum.Price = curAnd1Price;
818 nextOptimum.PosPrev = cur;
819 nextOptimum.MakeAsChar();
827 !(nextOptimum.PosPrev < cur && nextOptimum.BackPrev == 0))
830 if (shortRepPrice <= nextOptimum.Price)
832 nextOptimum.Price = shortRepPrice;
833 nextOptimum.PosPrev = cur;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 812 Optimal nextOptimum = _optimum[cur + 1];
815 if (curAnd1Price < nextOptimum.Price)
817 nextOptimum.Price = curAnd1Price;
818 nextOptimum.PosPrev = cur;
819 nextOptimum.MakeAsChar();
827 !(nextOptimum.PosPrev < cur && nextOptimum.BackPrev == 0))
830 if (shortRepPrice <= nextOptimum.Price)
832 nextOptimum.Price = shortRepPrice;
833 nextOptimum.PosPrev = cur;
    [all...]

Completed in 1709 milliseconds