Searched refs:NumLines (Results 1 – 10 of 10) sorted by relevance
| /freebsd/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() 97 assert(Covered <= NumLines && "Covered lines over-counted"); in getPercentCovered() [all …]
|
| H A D | CoverageSummaryInfo.cpp | 79 size_t NumLines = 0, CoveredLines = 0; in sumRegions() local 83 ++NumLines; in sumRegions() 89 LineCoverageInfo(CoveredLines, NumLines)}; in sumRegions()
|
| /freebsd/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/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineCheckDebugify.cpp | 49 unsigned NumLines = getDebugifyOperand(0); in runOnModule() local 51 BitVector MissingLines{NumLines, true}; in runOnModule()
|
| /freebsd/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() 799 unsigned NumLines = C->getNumLines(); in visitVerbatimBlockComment() local 800 if (NumLines == 0) in visitVerbatimBlockComment() 811 for (unsigned i = 0; i != NumLines; ++i) { in visitVerbatimBlockComment() 813 if (i + 1 != NumLines) in visitVerbatimBlockComment()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.h | 46 support::ulittle32_t NumLines; // Number of lines member
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | GsymCreator.cpp | 523 const size_t NumLines = DstLT.size(); in copyFunctionInfo() local 524 for (size_t I=0; I<NumLines; ++I) { in copyFunctionInfo()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingReader.cpp | 340 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd; in readMappingRegionsSubArray() local 349 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max())) in readMappingRegionsSubArray() 376 << ColumnStart << " -> " << (LineStart + NumLines) << ":" in readMappingRegionsSubArray() 387 LineStart + NumLines, ColumnEnd, Kind, Params); in readMappingRegionsSubArray()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 393 size_t NumLines = Lines.size(); in addSymbolsToRenameFromFile() local 394 for (size_t LineNo = 0; LineNo < NumLines; ++LineNo) { in addSymbolsToRenameFromFile()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | Options.td | 324 def disassemble_options_context : Option<"context", "C">, Arg<"NumLines">, 348 Arg<"NumLines">, Desc<"Number of instructions to display.">;
|