Searched defs:newVirtPos (Results 1 - 2 of 2) sorted by relevance

/external/lzma/CPP/7zip/Common/
H A DLimitedStreams.cpp101 UInt64 newVirtPos = offset; local
105 case STREAM_SEEK_CUR: newVirtPos += _virtPos; break;
106 case STREAM_SEEK_END: newVirtPos += Size; break;
109 if (_virtPos != newVirtPos)
111 _virtPos = newVirtPos;
113 *newPosition = newVirtPos;
H A DFileStreams.cpp254 UInt64 newVirtPos = offset; local
258 case STREAM_SEEK_CUR: newVirtPos += VirtPos; break;
259 case STREAM_SEEK_END: newVirtPos += File.Length; break;
262 VirtPos = newVirtPos;
264 *newPosition = newVirtPos;

Completed in 210 milliseconds