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

  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 239 UInt64 nowPos64 = 0;
241 if (nowPos64 < outSize64)
248 nowPos64++;
250 while (nowPos64 < outSize64)
252 // UInt64 next = Math.Min(nowPos64 + (1 << 18), outSize64);
253 // while(nowPos64 < next)
255 uint posState = (uint)nowPos64 & m_PosStateMask;
262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
264 b = m_LiteralDecoder.DecodeNormal(m_RangeDecoder, (uint)nowPos64, prevByte);
267 nowPos64++;
    [all...]
LzmaEncoder.cs 353 Int64 nowPos64;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 211 long nowPos64 = 0;
213 while (outSize < 0 || nowPos64 < outSize)
215 int posState = (int)nowPos64 & m_PosStateMask;
218 LiteralDecoder.Decoder2 decoder2 = m_LiteralDecoder.GetDecoder((int)nowPos64, prevByte);
225 nowPos64++;
297 if (rep0 >= nowPos64 || rep0 >= m_DictionarySizeCheck)
303 nowPos64 += len;
Encoder.java 353 long nowPos64;
1082 long progressPosValuePrev = nowPos64;
1083 if (nowPos64 == 0)
1087 Flush((int)nowPos64);
1092 int posState = (int)(nowPos64) & _posStateMask;
    [all...]
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 101 UInt64 nowPos64 = 0;
175 UInt64 currentPos = (nowPos64 + bufferPos);
232 nowPos64 += bufferPos;
243 RINOK(progress->SetRatioInfo(&nowPos64, NULL));
328 const UInt64 nowPos64 = _outStream.GetProcessedSize();
329 RINOK(progress->SetRatioInfo(NULL, &nowPos64));
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 325 UInt64 nowPos64;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 326 UInt64 nowPos64;
    [all...]
  /external/lzma/C/
LzmaEnc.c 325 UInt64 nowPos64;
    [all...]

Completed in 48 milliseconds