Home
last modified time | relevance | path

Searched refs:FalseExecutionCount (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp172 SumBranch->FalseExecutionCount += NextBranch->FalseExecutionCount; in combineInstanceCounts()
221 unsigned BC2 = NextBranch->FalseExecutionCount; in renderBranchExecutionCounts()
H A DCoverageSummaryInfo.cpp32 if (BR.FalseExecutionCount > 0) in sumBranches()
H A DSourceCoverageViewText.cpp322 static_cast<double>(R.ExecutionCount) + R.FalseExecutionCount; in renderBranchView()
333 << BranchCount("False", R.FalseExecutionCount, R.FalseFolded, Total) in renderBranchView()
H A DSourceCoverageViewHTML.cpp1126 static_cast<double>(R.ExecutionCount) + R.FalseExecutionCount; in renderBranchView()
1146 << BranchCount("False", R.FalseExecutionCount, R.FalseFolded, Total) in renderBranchView()
H A DCoverageExporterJson.cpp100 clamp_uint64_to_int64(Region.FalseExecutionCount), Region.FileID, in renderBranch()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h375 uint64_t FalseExecutionCount; member
381 FalseExecutionCount(0), TrueFolded(false), FalseFolded(true) {} in CountedRegion()
384 uint64_t FalseExecutionCount) in CountedRegion()
386 FalseExecutionCount(FalseExecutionCount), TrueFolded(false), in CountedRegion()