Searched refs:Totals (Results 1 - 10 of 10) sorted by relevance

/openbsd-current/gnu/llvm/llvm/tools/llvm-cov/
H A DCoverageReport.cpp341 FunctionCoverageSummary Totals("TOTAL");
344 ++Totals.ExecutionCount;
345 Totals.RegionCoverage += Function.RegionCoverage;
346 Totals.LineCoverage += Function.LineCoverage;
347 Totals.BranchCoverage += Function.BranchCoverage;
350 if (Totals.ExecutionCount) {
353 render(Totals, DC, OS);
386 const coverage::CoverageMapping &Coverage, FileCoverageSummary &Totals,
411 Totals += FileReport;
435 FileCoverageSummary Totals("TOTA
385 prepareFileReports( const coverage::CoverageMapping &Coverage, FileCoverageSummary &Totals, ArrayRef<std::string> Files, const CoverageViewOptions &Options, const CoverageFilter &Filters) argument
[all...]
H A DCoverageReport.h42 FileCoverageSummary &Totals, ArrayRef<std::string> Files,
H A DCoverageExporterJson.cpp283 FileCoverageSummary Totals = FileCoverageSummary("Totals"); local
284 auto FileReports = CoverageReport::prepareFileReports(Coverage, Totals,
298 {{"files", std::move(Files)}, {"totals", renderSummary(Totals)}});
H A DCoverageExporterLcov.cpp220 FileCoverageSummary Totals = FileCoverageSummary("Totals"); local
221 auto FileReports = CoverageReport::prepareFileReports(Coverage, Totals,
H A DSourceCoverageViewHTML.cpp433 FileCoverageSummary Totals("TOTALS");
435 Coverage, Totals, SourceFiles, Opts, Filters);
443 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true);
/openbsd-current/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h48 Totals.update(RecordSize);
53 Stat Totals; member in struct:llvm::pdb::StatCollection
H A DDumpOutputStyle.cpp336 Stats.Totals.Count, Stats.Totals.Size);
588 if (SymStats.Totals.Count > 0) {
615 TypeStats.Totals.Count, TypeStats.Totals.Size,
616 (double)TypeStats.Totals.Size / TypeStats.Totals.Count);
751 size_t CD = NumDigits(UdtStats.Totals.Count);
755 size_t SD = NumDigits(UdtStats.Totals.Size);
777 fmt_align(UdtStats.Totals
[all...]
/openbsd-current/gnu/llvm/clang/tools/scan-build/bin/
H A Dscan-build671 my %Totals;
678 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }
679 else { $Totals{$key}->[0]++; }
699 my $x = $Totals{$a};
700 my $y = $Totals{$b};
704 } keys %Totals )
706 my $val = $Totals{$key};
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVScope.cpp1539 OS << format("[%03d]: %10d (%6.2f%%)\n", Index, Totals[Index].first,
1540 Totals[Index].second);
1559 if (Level >= Totals.size())
1560 Totals.resize(2 * Level);
1561 Totals[Level].first += Size;
1562 Totals[Level].second += Percentage;
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVScope.h467 SmallVector<LVTotalsEntry> Totals;
469 // in the 'Totals' vector are valid values.
487 LVScopeCompileUnit() : LVScope(), Totals(TotalInitialSize, {0, 0.0}) {

Completed in 211 milliseconds