| /openbsd-src/gnu/llvm/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 | 61 size_t NumLines = 0, CoveredLines = 0; in get() local 66 ++NumLines; in get() 79 LineCoverageInfo(CoveredLines, NumLines), in get()
|
| /openbsd-src/gnu/llvm/llvm/utils/count/ |
| H A D | count.c | 13 size_t Count, NumLines, NumRead; in main() local 27 NumLines = 0; in main() 35 ++NumLines; in main() 43 if (Count != NumLines) { in main() 44 fprintf(stderr, "Expected %zu lines, got %zu.\n", Count, NumLines); in main()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | MachineCheckDebugify.cpp | 47 unsigned NumLines = getDebugifyOperand(0); in runOnModule() local 49 BitVector MissingLines{NumLines, true}; in runOnModule()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-opt-report/ |
| H A D | OptReport.cpp | 299 int64_t NumLines = 0; in writeReport() local 301 ++NumLines; in writeReport() 303 unsigned LNDigits = llvm::utostr(NumLines).size(); in writeReport()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugLinesSubsection.h | 45 support::ulittle32_t NumLines; // Number of lines member
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingReader.cpp | 296 uint64_t LineStartDelta, ColumnStart, NumLines, ColumnEnd; in readMappingRegionsSubArray() local 304 if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max())) in readMappingRegionsSubArray() 331 << ColumnStart << " -> " << (LineStart + NumLines) << ":" in readMappingRegionsSubArray() 342 LineStart + NumLines, ColumnEnd, Kind); in readMappingRegionsSubArray()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 394 size_t NumLines = Lines.size(); in addSymbolsToRenameFromFile() local 395 for (size_t LineNo = 0; LineNo < NumLines; ++LineNo) { in addSymbolsToRenameFromFile()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | Options.td | 308 def disassemble_options_context : Option<"context", "C">, Arg<"NumLines">, 328 Arg<"NumLines">, Desc<"Number of instructions to display.">;
|