Lines Matching defs:position
191 A sector-aligned position is a position that is a whole number multiple of
196 It is not an error to set a file pointer to a position beyond the end of the file.
203 bool CFileBase::GetPosition(UInt64 &position) const throw()
209 // for error case we can set (position) to (-1) or (0) or leave (position) unchanged.
210 // position = (UInt64)(Int64)-1; // for debug
211 position = 0;
214 position = (((UInt64)(UInt32)high) << 32) + low;
217 // return Seek(0, FILE_CURRENT, position);
237 // 21.07: we set (newPosition) to real position even after error.
247 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) const throw()
249 return Seek((Int64)position, FILE_BEGIN, newPosition);