Home | History | Annotate | Download | only in Windows

Lines Matching full:uint64

169 bool CFileBase::GetPosition(UInt64 &position) const

174 bool CFileBase::GetLength(UInt64 &length) const
189 length = (((UInt64)sizeHigh) << 32) + sizeLow;
193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition)
220 UInt64 newPosition;
224 bool CFileBase::SeekToEnd(UInt64 &newPosition)
239 fileInfo.Size = (((UInt64)winFileInfo.nFileSizeHigh) << 32) + winFileInfo.nFileSizeLow;
241 fileInfo.FileIndex = (((UInt64)winFileInfo.nFileIndexHigh) << 32) + winFileInfo.nFileIndexLow;
424 bool COutFile::SetLength(UInt64 length)
426 UInt64 newPosition;