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/Common/
DFilterCoder.cpp72 UInt64 nowPos64 = 0; in Code() local
76 while (!outSize || nowPos64 < *outSize) in Code()
112 UInt64 remSize = *outSize - nowPos64; in Code()
118 nowPos64 += size; in Code()
124 RINOK(progress->SetRatioInfo(&nowPos64, &nowPos64)); in Code()
/external/lzma/C/
DLzmaEnc.c331 UInt64 nowPos64; member
2275 nowPos32 = (UInt32)p->nowPos64; in LzmaEnc_CodeOneBlock()
2278 if (p->nowPos64 == 0) in LzmaEnc_CodeOneBlock()
2545 p->nowPos64 += nowPos32 - startPos32; in LzmaEnc_CodeOneBlock()
2551 p->nowPos64 += nowPos32 - startPos32; in LzmaEnc_CodeOneBlock()
2714 p->nowPos64 = 0; in LzmaEnc_AllocAndInit()
2809 UInt64 nowPos64; in LzmaEnc_CodeOneMemBlock() local
2826 nowPos64 = p->nowPos64; in LzmaEnc_CodeOneMemBlock()
2835 *unpackSize = (UInt32)(p->nowPos64 - nowPos64); in LzmaEnc_CodeOneMemBlock()
2861 res = ICompressProgress_Progress(progress, p->nowPos64, RangeEnc_GetProcessed(&p->rc)); in LzmaEnc_Encode2()
[all …]