Home
last modified time | relevance | path

Searched refs:distanceToMove (Results 1 – 4 of 4) sorted by relevance

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