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, RH in merge() [all...] |
H A D | CoverageSummaryInfo.cpp | 76 size_t NumLines = 0, CoveredLines = 0; in get() 81 ++NumLines; in get() 97 LineCoverageInfo(CoveredLines, NumLines), in get() 61 size_t NumLines = 0, CoveredLines = 0; get() local
|
/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 | 418 unsigned NumLines = C->getNumLines(); in visitVerbatimBlockComment() local 419 if (NumLines == 0) in visitVerbatimBlockComment() 423 for (unsigned i = 0; i != NumLines; ++i) { in visitVerbatimBlockComment() 425 if (i + 1 != NumLines) in visitVerbatimBlockComment() 800 unsigned NumLines = C->getNumLines(); in visitVerbatimBlockComment() local 801 if (NumLines == 0) in visitVerbatimBlockComment() 812 for (unsigned i = 0; i != NumLines; ++i) { in visitVerbatimBlockComment() 814 if (i + 1 != NumLines) in visitVerbatimBlockComment()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugLinesSubsection.h | 45 support::ulittle32_t NumLines; // Number of lines member
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | GsymCreator.cpp | 467 const size_t NumLines = DstLT.size(); in copyFunctionInfo() local 468 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 | 381 size_t NumLines = Lines.size(); in addSymbolsToRenameFromFile() local 382 for (size_t LineNo = 0; LineNo < NumLines; ++LineNo) { in addSymbolsToRenameFromFile()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | Options.td | 315 def disassemble_options_context : Option<"context", "C">, Arg<"NumLines">, 335 Arg<"NumLines">, Desc<"Number of instructions to display.">;
|