Home
last modified time | relevance | path

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

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java344 int _posStateBits = 2; field in Encoder
420 _lenEncoder.Init(1 << _posStateBits); in Init()
421 _repMatchLenEncoder.Init(1 << _posStateBits); in Init()
1265 _lenEncoder.UpdateTables(1 << _posStateBits); in SetStreams()
1267 _repMatchLenEncoder.UpdateTables(1 << _posStateBits); in SetStreams()
1305 …properties[0] = (byte)((_posStateBits * 5 + _numLiteralPosStateBits) * 9 + _numLiteralContextBits); in WriteCoderProperties()
1406 _posStateBits = pb; in SetLcLpPb()
1407 _posStateMask = ((1) << _posStateBits) - 1; in SetLcLpPb()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs344 int _posStateBits = 2; field in SevenZip.Compression.LZMA.Encoder
420 _lenEncoder.Init((UInt32)1 << _posStateBits); in Init()
421 _repMatchLenEncoder.Init((UInt32)1 << _posStateBits); in Init()
1265 _lenEncoder.UpdateTables((UInt32)1 << _posStateBits); in SetStreams()
1267 _repMatchLenEncoder.UpdateTables((UInt32)1 << _posStateBits); in SetStreams()
1305 …properties[0] = (Byte)((_posStateBits * 5 + _numLiteralPosStateBits) * 9 + _numLiteralContextBits); in WriteCoderProperties()
1436 _posStateBits = (int)v; in SetCoderProperties()
1437 _posStateMask = (((UInt32)1) << (int)_posStateBits) - 1; in SetCoderProperties()