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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 273 int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
274 if (posSlot >= Base.kStartPosModelIndex)
276 int numDirectBits = (posSlot >> 1) - 1;
277 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
278 if (posSlot < Base.kEndPosModelIndex)
280 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
295 rep0 = posSlot;
Encoder.java 1046 int posSlot = (1 << Base.kNumPosSlotBits) - 1;
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 315 uint posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
316 if (posSlot >= Base.kStartPosModelIndex)
318 int numDirectBits = (int)((posSlot >> 1) - 1);
319 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
320 if (posSlot < Base.kEndPosModelIndex)
322 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
331 rep0 = posSlot;
LzmaEncoder.cs 1046 UInt32 posSlot = (1 << Base.kNumPosSlotBits) - 1;
1048 _posSlotEncoder[lenToPosState].Encode(_rangeEncoder, posSlot);
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c     [all...]
LzmaDec.c 100 #define PosSlot (IsRep0Long + (kNumStates << kNumPosBitsMax))
101 #define SpecPos (PosSlot + (kNumLenToPosStates << kNumPosSlotBits))
297 prob = probs + PosSlot +
302 unsigned posSlot = (unsigned)distance;
305 if (posSlot < kEndPosModelIndex)
308 prob = probs + SpecPos + distance - posSlot - 1;
632 unsigned posSlot;
633 prob = probs + PosSlot +
636 TREE_DECODE_CHECK(prob, 1 << kNumPosSlotBits, posSlot);
637 if (posSlot >= kStartPosModelIndex
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c     [all...]
LzmaDec.c 101 #define PosSlot (IsRep0Long + (kNumStates << kNumPosBitsMax))
102 #define SpecPos (PosSlot + (kNumLenToPosStates << kNumPosSlotBits))
298 prob = probs + PosSlot +
303 unsigned posSlot = (unsigned)distance;
306 if (posSlot < kEndPosModelIndex)
309 prob = probs + SpecPos + distance - posSlot - 1;
633 unsigned posSlot;
634 prob = probs + PosSlot +
637 TREE_DECODE_CHECK(prob, 1 << kNumPosSlotBits, posSlot);
638 if (posSlot >= kStartPosModelIndex
    [all...]
  /external/lzma/C/
LzmaEnc.c     [all...]
LzmaDec.c 100 #define PosSlot (IsRep0Long + (kNumStates << kNumPosBitsMax))
101 #define SpecPos (PosSlot + (kNumLenToPosStates << kNumPosSlotBits))
297 prob = probs + PosSlot +
302 unsigned posSlot = (unsigned)distance;
305 if (posSlot < kEndPosModelIndex)
308 prob = probs + SpecPos + distance - posSlot - 1;
632 unsigned posSlot;
633 prob = probs + PosSlot +
636 TREE_DECODE_CHECK(prob, 1 << kNumPosSlotBits, posSlot);
637 if (posSlot >= kStartPosModelIndex)
    [all...]

Completed in 635 milliseconds