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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 856 int posStateNext = (position + 1) & _posStateMask;
858 SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]) +
865 0, lenTest2, state2, posStateNext);
916 int posStateNext = (position + lenTest) & _posStateMask;
919 SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]) +
925 posStateNext = (position + lenTest + 1) & _posStateMask;
926 int nextMatchPrice = curAndLenCharPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]);
934 int curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext);
991 int posStateNext = (position + lenTest) & _posStateMask;
993 SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]) +
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 856 UInt32 posStateNext = (position + 1) & _posStateMask;
858 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice1() +
865 0, lenTest2, state2, posStateNext);
916 UInt32 posStateNext = (position + lenTest) & _posStateMask;
919 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice0() +
925 posStateNext = (position + lenTest + 1) & _posStateMask;
926 UInt32 nextMatchPrice = curAndLenCharPrice + _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice1();
934 UInt32 curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext);
991 UInt32 posStateNext = (position + lenTest) & _posStateMask;
993 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice0() +
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c     [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c     [all...]
  /external/lzma/C/
LzmaEnc.c     [all...]

Completed in 54 milliseconds