Lines Matching refs:nowPos64
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) & _posStateMask; in CodeOneBlock()
1119 … LiteralEncoder.Encoder2 subCoder = _literalEncoder.GetSubCoder((UInt32)nowPos64, _previousByte); in CodeOneBlock()
1205 nowPos64 += len; in CodeOneBlock()
1213 inSize = nowPos64; in CodeOneBlock()
1217 Flush((UInt32)nowPos64); in CodeOneBlock()
1221 if (nowPos64 - progressPosValuePrev >= (1 << 12)) in CodeOneBlock()
1269 nowPos64 = 0; in SetStreams()