Searched refs:nowPos64 (Results 1 - 6 of 6) sorted by relevance

/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs239 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...]
H A DLzmaEncoder.cs353 Int64 nowPos64; field in class:SevenZip.Compression.LZMA.Encoder
1084 Int64 progressPosValuePrev = nowPos64;
1085 if (nowPos64 == 0)
1089 Flush((UInt32)nowPos64);
1094 UInt32 posState = (UInt32)(nowPos64) & _posStateMask;
1098 _literalEncoder.GetSubCoder((UInt32)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte);
1101 nowPos64++;
1105 Flush((UInt32)nowPos64);
1111 UInt32 len = GetOptimum((UInt32)nowPos64, out pos);
1113 UInt32 posState = ((UInt32)nowPos64)
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java211 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;
H A DEncoder.java353 long nowPos64; field in class:Encoder
1082 long progressPosValuePrev = nowPos64;
1083 if (nowPos64 == 0)
1087 Flush((int)nowPos64);
1092 int posState = (int)(nowPos64) & _posStateMask;
1096 _literalEncoder.GetSubCoder((int)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte);
1099 nowPos64++;
1103 Flush((int)nowPos64);
1109 int len = GetOptimum((int)nowPos64);
1111 int posState = ((int)nowPos64)
[all...]
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.cpp101 UInt64 nowPos64 = 0; local
175 UInt64 currentPos = (nowPos64 + bufferPos);
232 nowPos64 += bufferPos;
243 RINOK(progress->SetRatioInfo(&nowPos64, NULL));
328 const UInt64 nowPos64 = _outStream.GetProcessedSize(); local
329 RINOK(progress->SetRatioInfo(NULL, &nowPos64));
/external/lzma/C/
H A DLzmaEnc.c325 UInt64 nowPos64; member in struct:__anon11525
1746 nowPos32 = (UInt32)p->nowPos64;
1749 if (p->nowPos64 == 0)
1886 p->nowPos64 += nowPos32 - startPos32;
1891 p->nowPos64 += nowPos32 - startPos32;
2033 p->nowPos64 = 0;
2124 UInt64 nowPos64; local
2140 nowPos64 = p->nowPos64;
2146 *unpackSize = (UInt32)(p->nowPos64
[all...]

Completed in 341 milliseconds