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

/external/lzma/CPP/Common/
H A DC_FileIO.cpp45 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const argument
47 return ::lseek(_handle, distanceToMove, moveMethod);
/external/lzma/CPP/Windows/
H A DFileIO.cpp118 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw() argument
123 distanceToMove += Size;
128 LONG high = (LONG)(distanceToMove >> 32);
129 DWORD low = ::SetFilePointer(_handle, (LONG)(distanceToMove & 0xFFFFFFFF), &high, moveMethod);

Completed in 190 milliseconds