Lines Matching refs:newPosition
118 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw() in Seek()
133 newPosition = (((UInt64)(UInt32)high) << 32) + low; in Seek()
137 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) const throw() in Seek()
139 return Seek(position, FILE_BEGIN, newPosition); in Seek()
144 UInt64 newPosition; in SeekToBegin() local
145 return Seek(0, newPosition); in SeekToBegin()
148 bool CFileBase::SeekToEnd(UInt64 &newPosition) const throw() in SeekToEnd()
150 return Seek(0, FILE_END, newPosition); in SeekToEnd()
424 UInt64 newPosition; in SetLength() local
425 if (!Seek(length, newPosition)) in SetLength()
427 if (newPosition != length) in SetLength()