Home
last modified time | relevance | path

Searched refs:_repMatchLenEncoder (Results 1 – 2 of 2) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java320 LenPriceTableEncoder _repMatchLenEncoder = new LenPriceTableEncoder(); field in Encoder
421 _repMatchLenEncoder.Init(1 << _posStateBits); in Init()
485 int price = _repMatchLenEncoder.GetPrice(len - Base.kMatchMinLen, posState); in GetRepPrice()
653 int curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState); in GetOptimum()
1157 _repMatchLenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in CodeOneBlock()
1266 _repMatchLenEncoder.SetTableSize(_numFastBytes + 1 - Base.kMatchMinLen); in SetStreams()
1267 _repMatchLenEncoder.UpdateTables(1 << _posStateBits); in SetStreams()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs320 LenPriceTableEncoder _repMatchLenEncoder = new LenPriceTableEncoder(); field in SevenZip.Compression.LZMA.Encoder
421 _repMatchLenEncoder.Init((UInt32)1 << _posStateBits); in Init()
485 UInt32 price = _repMatchLenEncoder.GetPrice(len - Base.kMatchMinLen, posState); in GetRepPrice()
653 UInt32 curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState); in GetOptimum()
1159 _repMatchLenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in CodeOneBlock()
1266 _repMatchLenEncoder.SetTableSize(_numFastBytes + 1 - Base.kMatchMinLen); in SetStreams()
1267 _repMatchLenEncoder.UpdateTables((UInt32)1 << _posStateBits); in SetStreams()