Home
last modified time | relevance | path

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

/external/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs239 UInt64 nowPos64 = 0; in Code()
241 if (nowPos64 < outSize64) in Code()
248 nowPos64++; in Code()
250 while (nowPos64 < outSize64) 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()
280 nowPos64++; in Code()
333 if (rep0 >= m_OutWindow.TrainSize + nowPos64 || rep0 >= m_DictionarySizeCheck) in Code()
[all …]
DLzmaEncoder.cs353 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) & _posStateMask; in CodeOneBlock()
[all …]
/external/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java211 long nowPos64 = 0; in Code() local
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()
DEncoder.java353 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) & _posStateMask; in CodeOneBlock()
[all …]
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.cpp101 UInt64 nowPos64 = 0; in CodeReal() local
175 UInt64 currentPos = (nowPos64 + bufferPos); in CodeReal()
232 nowPos64 += bufferPos; in CodeReal()
243 RINOK(progress->SetRatioInfo(&nowPos64, NULL)); in CodeReal()
328 const UInt64 nowPos64 = _outStream.GetProcessedSize(); in CodeReal() local
329 RINOK(progress->SetRatioInfo(NULL, &nowPos64)); in CodeReal()
/external/lzma/C/
DLzmaEnc.c325 UInt64 nowPos64; member
1746 nowPos32 = (UInt32)p->nowPos64; in LzmaEnc_CodeOneBlock()
1749 if (p->nowPos64 == 0) in LzmaEnc_CodeOneBlock()
1886 p->nowPos64 += nowPos32 - startPos32; in LzmaEnc_CodeOneBlock()
1891 p->nowPos64 += nowPos32 - startPos32; in LzmaEnc_CodeOneBlock()
2033 p->nowPos64 = 0; in LzmaEnc_AllocAndInit()
2124 UInt64 nowPos64; in LzmaEnc_CodeOneMemBlock() local
2140 nowPos64 = p->nowPos64; in LzmaEnc_CodeOneMemBlock()
2146 *unpackSize = (UInt32)(p->nowPos64 - nowPos64); in LzmaEnc_CodeOneMemBlock()
2172 res = progress->Progress(progress, p->nowPos64, RangeEnc_GetProcessed(&p->rc)); in LzmaEnc_Encode2()