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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 320 LenPriceTableEncoder _repMatchLenEncoder = new LenPriceTableEncoder();
421 _repMatchLenEncoder.Init(1 << _posStateBits);
485 int price = _repMatchLenEncoder.GetPrice(len - Base.kMatchMinLen, posState);
653 int curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 320 LenPriceTableEncoder _repMatchLenEncoder = new LenPriceTableEncoder();
421 _repMatchLenEncoder.Init((UInt32)1 << _posStateBits);
485 UInt32 price = _repMatchLenEncoder.GetPrice(len - Base.kMatchMinLen, posState);
653 UInt32 curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
    [all...]

Completed in 45 milliseconds