Searched refs:Total (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DFunctionSummary.cpp19 unsigned Total = 0; local
21 Total += I.second.TotalBasicBlocks;
22 return Total;
26 unsigned Total = 0; local
28 Total += I.second.VisitedBasicBlocks.count();
29 return Total;
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSampleProfileLoaderBaseUtil.cpp143 uint64_t Total = 0; local
145 Total += I.second.getSamples();
152 Total += countBodySamples(CalleeSamples, PSI);
155 return Total;
164 unsigned Total) const {
165 assert(Used <= Total &&
167 return Total > 0 ? Used * 100 / Total : 100;
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp210 static void printVal(double Val, double Total, raw_ostream &OS) { argument
211 if (Total < 1e-7) // Avoid dividing by zero.
214 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
217 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { argument
218 if (Total.getUserTime())
219 printVal(getUserTime(), Total.getUserTime(), OS);
220 if (Total.getSystemTime())
221 printVal(getSystemTime(), Total.getSystemTime(), OS);
222 if (Total.getProcessTime())
223 printVal(getProcessTime(), Total
362 TimeRecord Total; local
[all...]
H A DTarWriter.cpp75 int Total = Len + Twine(Len).str().size(); local
76 Total = Len + Twine(Total).str().size();
77 return (Twine(Total) + " " + Key + "=" + Val + "\n").str();
H A DTimeProfiler.cpp210 for (const auto &Total : AllCountAndTotalPerName)
211 SortedTotals.emplace_back(std::string(Total.getKey()), Total.getValue());
220 for (const NameAndCountAndDurationType &Total : SortedTotals) {
221 auto DurUs = duration_cast<microseconds>(Total.second.second).count();
222 auto Count = AllCountAndTotalPerName[Total.first].first;
230 J.attribute("name", "Total " + Total.first);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc81 // Total allocated space (bytes)
84 // Total free space (bytes)
101 // Total allocated space (bytes)
103 // Total free space (bytes)
/freebsd-current/contrib/kyua/integration/
H A Dcmd_report_test.sh70 Total time: S.UUUs
82 Total time: S.UUUs
127 Total time: S.UUUs
156 Total time: S.UUUs
175 Total time: S.UUUs
185 Total time: S.UUUs
204 Total time: S.UUUs
276 Total time: S.UUUs
297 Total time: S.UUUs
315 Total tim
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocScore.cpp91 RegAllocScore Total;
117 Total += MBBScore;
119 return Total;
/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Daslerror.c341 * Total - Total length of line
354 UINT32 Total)
395 if (Total >= 256)
451 * Total - Number of characters printed so far
465 UINT32 *Total)
562 if (*Total < 256)
572 else if (*Total == 256)
588 *Total += 1;
639 UINT32 Total local
350 AeDecodeErrorMessageId( FILE *OutputFile, ASL_ERROR_MSG *Enode, BOOLEAN PrematureEOF, UINT32 Total) argument
461 AePrintErrorSourceLine( FILE *OutputFile, ASL_ERROR_MSG *Enode, BOOLEAN *PrematureEOF, UINT32 *Total) argument
750 UINT32 Total = 0; local
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DExprOpenMP.h301 Total = 3, member in class:clang::final::RangeExprOffset
309 Total = 3, member in class:clang::final::RangeLocOffset
349 return NumIterators * static_cast<int>(RangeExprOffset::Total);
353 return NumIterators * static_cast<int>(RangeLocOffset::Total);
413 Begin, Begin + NumIterators * static_cast<int>(RangeExprOffset::Total));
419 Begin, Begin + NumIterators * static_cast<int>(RangeExprOffset::Total));
/freebsd-current/usr.sbin/ac/
H A Dac.c84 static struct timeval Total = { 0, 0 }; variable in typeref:struct:timeval
181 timeradd(&Total, &secs, &Total);
201 timeradd(&Total, &secs, &Total);
505 show("total", Total);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseUtil.h39 unsigned computeCoverage(unsigned Used, unsigned Total) const;
H A DSampleProfileLoaderBaseImpl.h1081 unsigned Total = CoverageTracker.countBodyRecords(Samples, PSI); local
1082 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
1086 Twine(Used) + " of " + Twine(Total) + " available profile records (" +
1094 uint64_t Total = CoverageTracker.countBodySamples(Samples, PSI); local
1095 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
1099 Twine(Used) + " of " + Twine(Total) + " available profile samples (" +
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DTensorSpec.cpp39 static std::array<std::string, static_cast<size_t>(TensorType::Total)>
118 case TensorType::Total:
H A DBlockFrequencyInfoImpl.cpp130 RemWeight = Dist.Total;
148 uint64_t NewTotal = Total + Amount;
151 bool IsOverflow = NewTotal < Total;
156 Total = NewTotal;
247 Total = 1;
259 else if (Total > UINT32_MAX)
260 Shift = 33 - llvm::countl_zero(Total);
266 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
276 Total = 0;
287 Total
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DTypeLoc.cpp95 unsigned Total = 0; local
101 Total = llvm::alignTo(Total, Align);
102 Total += TypeSizer().Visit(TyLoc);
105 Total = llvm::alignTo(Total, MaxAlign);
106 return Total;
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVCompare.cpp25 enum class LVCompareItem { Scope, Symbol, Type, Line, Total };
34 {LVCompareItem::Total, LVCompareEntry("Total", 0, 0, 0)}};
59 IterTotal = Results.find(LVCompareItem::Total);
418 if (Entry.first == LVCompareItem::Total)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTensorSpec.h55 Total
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp302 uint64_t Total = R.ExecutionCount + R.FalseExecutionCount; local
304 if (!getOptions().ShowBranchCounts && Total != 0) {
305 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
306 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
H A DSourceCoverageViewHTML.cpp318 [&Columns, &Opts](unsigned Hit, unsigned Total, float Pctg) {
322 if (Total)
326 RSO << '(' << Hit << '/' << Total << ')';
329 if (!Total)
929 uint64_t Total = R.ExecutionCount + R.FalseExecutionCount;
931 if (!getOptions().ShowBranchCounts && Total != 0) {
932 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
933 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kRegisterInfo.cpp138 for (size_t Reg = 0, Total = getNumRegs(); Reg != Total; ++Reg) {
/freebsd-current/sys/contrib/openzfs/scripts/
H A Dzloop.sh60 -t Total time to loop for, in seconds. If not provided,
/freebsd-current/usr.bin/systat/
H A Dvmstat.c107 struct vmtotal Total; member in struct:Info
121 #define total s.Total
774 size = sizeof(ls->Total);
777 if (sysctl(mib, 2, &ls->Total, &size, NULL, 0) < 0) {
779 bzero(&ls->Total, sizeof(ls->Total));
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp583 formatBranchInfo(const GCOV::Options &Options, uint64_t Count, uint64_t Total) argument
584 : Options(Options), Count(Count), Total(Total) {}
587 if (!Total)
592 OS << "taken " << branchDiv(Count, Total) << "%";
597 uint64_t Total; member in struct:__anon2140::formatBranchInfo
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h68 /// contributions to the \p Total time record.
69 void print(const TimeRecord &Total, raw_ostream &OS) const;

Completed in 434 milliseconds

12