Lines Matching defs:length
150 bool CFileBase::GetLength(UInt64 &length) const throw()
155 length = Size;
165 length = (((UInt64)high) << 32) + low;
173 length = (UInt64)fileSize.QuadPart;
586 bool COutFile::SetLength(UInt64 length) throw()
589 if (!Seek(length, newPosition))
591 if (newPosition != length)
596 bool COutFile::SetLength_KeepPosition(UInt64 length) throw()
602 const bool result = SetLength(length);
669 bool CFileBase::GetLength(UInt64 &length) const
671 length = 0;
672 // length = (UInt64)(Int64)-1; // for debug
678 length = (UInt64)lengthTemp;
685 length = Size;
844 bool COutFile::SetLength(UInt64 length) throw()
846 const off_t len2 = (off_t)length;
847 if ((Int64)length != len2)