Searched refs:nowPos64 (Results 1 - 6 of 6) sorted by relevance
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaDecoder.cs | 239 UInt64 nowPos64 = 0;
in Code() 241 if (nowPos64 < outSize64)
in Code() 248 nowPos64++;
in Code() 250 while (nowPos64 < outSize64)
in Code() 252 // UInt64 next = Math.Min(nowPos64 + (1 << 18), outSize64);
in Code() 253 // while(nowPos64 < next)
in Code() 255 uint posState = (uint)nowPos64 & m_PosStateMask;
in Code() 262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
in Code() 264 b = m_LiteralDecoder.DecodeNormal(m_RangeDecoder, (uint)nowPos64, prevByte);
in Code() 267 nowPos64 in Code() [all...] |
H A D | LzmaEncoder.cs | 353 Int64 nowPos64;
field in SevenZip.Compression.LZMA.Encoder 1084 Int64 progressPosValuePrev = nowPos64;
in CodeOneBlock() 1085 if (nowPos64 == 0)
in CodeOneBlock() 1089 Flush((UInt32)nowPos64);
in CodeOneBlock() 1094 UInt32 posState = (UInt32)(nowPos64) & _posStateMask;
in CodeOneBlock() 1098 _literalEncoder.GetSubCoder((UInt32)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte);
in CodeOneBlock() 1101 nowPos64++;
in CodeOneBlock() 1105 Flush((UInt32)nowPos64);
in CodeOneBlock() 1111 UInt32 len = GetOptimum((UInt32)nowPos64, out pos);
in CodeOneBlock() 1113 UInt32 posState = ((UInt32)nowPos64) in CodeOneBlock() [all...] |
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Decoder.java | 211 long nowPos64 = 0;
in Code() 213 while (outSize < 0 || nowPos64 < outSize)
in Code() 215 int posState = (int)nowPos64 & m_PosStateMask;
in Code() 218 LiteralDecoder.Decoder2 decoder2 = m_LiteralDecoder.GetDecoder((int)nowPos64, prevByte);
in Code() 225 nowPos64++;
in Code() 297 if (rep0 >= nowPos64 || rep0 >= m_DictionarySizeCheck)
in Code() 303 nowPos64 += len;
in Code()
|
H A D | Encoder.java | 353 long nowPos64;
field in Encoder 1082 long progressPosValuePrev = nowPos64;
in CodeOneBlock() 1083 if (nowPos64 == 0)
in CodeOneBlock() 1087 Flush((int)nowPos64);
in CodeOneBlock() 1092 int posState = (int)(nowPos64) & _posStateMask;
in CodeOneBlock() 1096 _literalEncoder.GetSubCoder((int)(nowPos64), _previousByte).Encode(_rangeEncoder, curByte);
in CodeOneBlock() 1099 nowPos64++;
in CodeOneBlock() 1103 Flush((int)nowPos64);
in CodeOneBlock() 1109 int len = GetOptimum((int)nowPos64);
in CodeOneBlock() 1111 int posState = ((int)nowPos64) in CodeOneBlock() [all...] |
/third_party/lzma/CPP/7zip/Common/ |
H A D | FilterCoder.cpp | 114 UInt64 nowPos64 = 0;
in Code() local 119 while (!outSize || nowPos64 < *outSize)
in Code() 230 const UInt64 rem = *outSize - nowPos64;
in Code() 235 nowPos64 += writeSize;
in Code() 267 // printf("\nnowPos64=%x, readPos=%x, filterPos=%x\n", (unsigned)nowPos64, (unsigned)readPos, (unsigned)filterPos);
in Code() 269 if (progress && (nowPos64 - prev) >= (1 << 22))
in Code() 271 prev = nowPos64;
in Code() 272 RINOK(progress->SetRatioInfo(&nowPos64, &nowPos64))
in Code()
|
/third_party/lzma/C/ |
H A D | LzmaEnc.c | 419 UInt64 nowPos64;
member 2402 nowPos32 = (UInt32)p->nowPos64;
in LzmaEnc_CodeOneBlock() 2405 if (p->nowPos64 == 0)
in LzmaEnc_CodeOneBlock() 2672 p->nowPos64 += nowPos32 - startPos32;
in LzmaEnc_CodeOneBlock() 2678 p->nowPos64 += nowPos32 - startPos32;
in LzmaEnc_CodeOneBlock() 2861 p->nowPos64 = 0;
in LzmaEnc_AllocAndInit() 2958 UInt64 nowPos64;
in LzmaEnc_CodeOneMemBlock() local 2976 nowPos64 = p->nowPos64;
in LzmaEnc_CodeOneMemBlock() 2980 *unpackSize = (UInt32)(p->nowPos64 in LzmaEnc_CodeOneMemBlock() [all...] |
Completed in 12 milliseconds