Searched refs:NumLines (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageSummaryInfo.h | 69 size_t NumLines; variable 72 LineCoverageInfo() : Covered(0), NumLines(0) {} in LineCoverageInfo() 74 LineCoverageInfo(size_t Covered, size_t NumLines) in LineCoverageInfo() argument 75 : Covered(Covered), NumLines(NumLines) { in LineCoverageInfo() 76 assert(Covered <= NumLines && "Covered lines over-counted"); in LineCoverageInfo() 81 NumLines += RHS.NumLines; 87 NumLines = std::max(NumLines, RHS.NumLines); in merge() 92 size_t getNumLines() const { return NumLines; } in getNumLines() 94 bool isFullyCovered() const { return Covered == NumLines; } in isFullyCovered() 98 if (NumLines == 0) in getPercentCovered() [all …]
|
| H A D | CoverageSummaryInfo.cpp | 61 size_t NumLines = 0, CoveredLines = 0; in get() local 66 ++NumLines; in get() 79 LineCoverageInfo(CoveredLines, NumLines), in get()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.cpp | 31 BlockHeader->NumLines * in operator ()() 44 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines)) in operator ()() 47 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines)) in operator ()() 117 BlockHeader.NumLines = B.Lines.size(); in commit() 119 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(LineNumberEntry); in commit() 121 BlockHeader.BlockSize += BlockHeader.NumLines * sizeof(ColumnNumberEntry); in commit()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineCheckDebugify.cpp | 46 unsigned NumLines = getDebugifyOperand(0); in runOnModule() local 48 BitVector MissingLines{NumLines, true}; in runOnModule()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 417 unsigned NumLines = C->getNumLines(); in visitVerbatimBlockComment() local 418 if (NumLines == 0) in visitVerbatimBlockComment() 422 for (unsigned i = 0; i != NumLines; ++i) { in visitVerbatimBlockComment() 424 if (i + 1 != NumLines) in visitVerbatimBlockComment() 787 unsigned NumLines = C->getNumLines(); in visitVerbatimBlockComment() local 788 if (NumLines == 0) in visitVerbatimBlockComment() 799 for (unsigned i = 0; i != NumLines; ++i) { in visitVerbatimBlockComment() 801 if (i + 1 != NumLines) in visitVerbatimBlockComment()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.h | 44 support::ulittle32_t NumLines; // Number of lines member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingReader.cpp | 295 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd; in readMappingRegionsSubArray() local 303 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max())) in readMappingRegionsSubArray() 330 << ColumnStart << " -> " << (LineStart + NumLines) << ":" in readMappingRegionsSubArray() 341 LineStart + NumLines, ColumnEnd, Kind); in readMappingRegionsSubArray()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | ConfigManager.cpp | 413 size_t NumLines = Lines.size(); in addSymbolsToRenameFromFile() local 414 for (size_t LineNo = 0; LineNo < NumLines; ++LineNo) { in addSymbolsToRenameFromFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 301 def disassemble_options_context : Option<"context", "C">, Arg<"NumLines">, 321 Arg<"NumLines">, Desc<"Number of instructions to display.">;
|