Searched refs:_lenEncoder (Results 1 – 2 of 2) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 319 LenPriceTableEncoder _lenEncoder = new LenPriceTableEncoder(); field in Encoder 420 _lenEncoder.Init(1 << _posStateBits); in Init() 498 return price + _lenEncoder.GetPrice(len - Base.kMatchMinLen, posState); in GetPosLenPrice() 1045 _lenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in WriteEndMarker() 1172 _lenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in CodeOneBlock() 1264 _lenEncoder.SetTableSize(_numFastBytes + 1 - Base.kMatchMinLen); in SetStreams() 1265 _lenEncoder.UpdateTables(1 << _posStateBits); in SetStreams()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 319 LenPriceTableEncoder _lenEncoder = new LenPriceTableEncoder(); field in SevenZip.Compression.LZMA.Encoder 420 _lenEncoder.Init((UInt32)1 << _posStateBits); in Init() 498 return price + _lenEncoder.GetPrice(len - Base.kMatchMinLen, posState); in GetPosLenPrice() 1045 _lenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in WriteEndMarker() 1174 _lenEncoder.Encode(_rangeEncoder, len - Base.kMatchMinLen, posState); in CodeOneBlock() 1264 _lenEncoder.SetTableSize(_numFastBytes + 1 - Base.kMatchMinLen); in SetStreams() 1265 _lenEncoder.UpdateTables((UInt32)1 << _posStateBits); in SetStreams()
|