OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newVirtPos
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/7zip/Common/
LimitedStreams.cpp
101
UInt64
newVirtPos
= offset;
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
;
FileStreams.cpp
254
UInt64
newVirtPos
= offset;
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 38 milliseconds