Searched refs:distanceToMove (Results 1 - 2 of 2) sorted by relevance
/third_party/lzma/CPP/Windows/ |
H A D | FileIO.cpp | 220 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw()
in Seek() argument 225 distanceToMove += Size;
in Seek() 230 LONG high = (LONG)(distanceToMove >> 32);
in Seek() 231 const DWORD low = ::SetFilePointer(_handle, (LONG)(distanceToMove & 0xFFFFFFFF), &high, moveMethod);
in Seek() 693 off_t CFileBase::seek(off_t distanceToMove, int moveMethod) const
698 printf("\n seek : IsDeviceFile moveMethod = %d distanceToMove = %ld\n", moveMethod, distanceToMove);
699 distanceToMove += Size;
704 // printf("\nCFileBase::seek() moveMethod = %d, distanceToMove = %lld", moveMethod, (long long)distanceToMove);
[all...] |
H A D | FileIO.h | 162 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw();
317 off_t seek(off_t distanceToMove, int moveMethod) const;
|
Completed in 2 milliseconds