Searched refs:VirtPos (Results 1 - 2 of 2) sorted by relevance

/external/lzma/CPP/7zip/Common/
H A DFileStreams.cpp36 VirtPos(0),
66 if (VirtPos >= File.Size)
67 return VirtPos == File.Size ? S_OK : E_FAIL;
68 UInt64 rem = File.Size - VirtPos;
76 UInt64 alignedPos = VirtPos & mask2;
79 UInt32 pos = (UInt32)VirtPos & mask;
84 VirtPos += rem;
91 if ((VirtPos & mask) != 0 || ((ptrdiff_t)data & mask) != 0 )
95 UInt64 end = VirtPos + size;
99 if (end <= VirtPos)
[all...]
H A DFileStreams.h36 UInt64 VirtPos; member in class:CInFileStream

Completed in 78 milliseconds