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

123

/netbsd-current/external/apache2/llvm/dist/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;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSampleProfileLoaderBaseUtil.cpp135 uint64_t Total = 0; local
137 Total += I.second.getSamples();
144 Total += countBodySamples(CalleeSamples, PSI);
147 return Total;
156 unsigned Total) const {
157 assert(Used <= Total &&
159 return Total > 0 ? Used * 100 / Total : 100;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimer.cpp185 static void printVal(double Val, double Total, raw_ostream &OS) { argument
186 if (Total < 1e-7) // Avoid dividing by zero.
189 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
192 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { argument
193 if (Total.getUserTime())
194 printVal(getUserTime(), Total.getUserTime(), OS);
195 if (Total.getSystemTime())
196 printVal(getSystemTime(), Total.getSystemTime(), OS);
197 if (Total.getProcessTime())
198 printVal(getProcessTime(), Total
337 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.cpp187 for (const auto &Total : AllCountAndTotalPerName)
188 SortedTotals.emplace_back(std::string(Total.getKey()), Total.getValue());
197 for (const NameAndCountAndDurationType &Total : SortedTotals) {
198 auto DurUs = duration_cast<microseconds>(Total.second.second).count();
199 auto Count = AllCountAndTotalPerName[Total.first].first;
207 J.attribute("name", "Total " + Total.first);
/netbsd-current/external/gpl2/texinfo/dist/util/
H A Dfix-info-dir47 Total="0"
250 Total=`expr "$Total" + "1"`
295 Total=`expr "$Total" + "1"`
304 Total=`expr "$Total" + "1"`
311 echo "$Total $DONE_MSG"
/netbsd-current/external/bsd/kyua-cli/dist/integration/
H A Dcmd_report_test.sh79 Total time: S.UUUs
91 Total time: S.UUUs
155 Total time: S.UUUs
172 Total time: S.UUUs
203 Total time: S.UUUs
221 Total time: S.UUUs
242 Total time: S.UUUs
261 Total time: S.UUUs
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Daslerror.c233 * Total - Total length of line
246 UINT32 Total)
287 if (Total >= 256)
343 * Total - Number of characters printed so far
357 UINT32 *Total)
454 if (*Total < 256)
464 else if (*Total == 256)
480 *Total += 1;
531 UINT32 Total local
242 AeDecodeErrorMessageId( FILE *OutputFile, ASL_ERROR_MSG *Enode, BOOLEAN PrematureEOF, UINT32 Total) argument
353 AePrintErrorSourceLine( FILE *OutputFile, ASL_ERROR_MSG *Enode, BOOLEAN *PrematureEOF, UINT32 *Total) argument
642 UINT32 Total = 0; local
[all...]
/netbsd-current/usr.bin/systat/
H A Dsyscall.c59 struct vmtotal Total; member in struct:Info
203 show_vmstat_top(&s.Total, &s.uvmexp, &s1.uvmexp);
437 size = sizeof(stats->Total);
440 if (sysctl(mib, 2, &stats->Total, &size, NULL, 0) < 0) {
442 memset(&stats->Total, 0, sizeof(stats->Total));
H A Dvmstat.c65 struct vmtotal Total; member in struct:Info
418 show_vmstat_top(vmtotal_t *Total, uvmexp_sysctl_t *uvm, uvmexp_sysctl_t *uvm1) argument
436 putint(Total->t_rq - 1, PROCSROW + 1, PROCSCOL + 3, 3);
437 putint(Total->t_dw, PROCSROW + 1, PROCSCOL + 6, 3);
438 putint(Total->t_sl, PROCSROW + 1, PROCSCOL + 9, 3);
497 show_vmstat_top(&s.Total, &s.uvmexp, &s1.uvmexp);
841 size = sizeof(stats->Total);
844 if (sysctl(mib, 2, &stats->Total, &size, NULL, 0) < 0) {
846 memset(&stats->Total, 0, sizeof(stats->Total));
[all...]
/netbsd-current/external/apache2/llvm/dist/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));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileLoaderBaseUtil.h43 unsigned computeCoverage(unsigned Used, unsigned Total) const;
H A DSampleProfileLoaderBaseImpl.h854 unsigned Total = CoverageTracker.countBodyRecords(Samples, PSI); local
855 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
859 Twine(Used) + " of " + Twine(Total) + " available profile records (" +
867 uint64_t Total = CoverageTracker.countBodySamples(Samples, PSI); local
868 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
872 Twine(Used) + " of " + Twine(Total) + " available profile samples (" +
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DSourceCoverageViewHTML.cpp341 auto AddCoverageTripleToColumn = [&Columns](unsigned Hit, unsigned Total,
346 if (Total)
350 RSO << '(' << Hit << '/' << Total << ')';
353 if (Hit == Total)
671 unsigned Total = R.ExecutionCount + R.FalseExecutionCount; local
673 if (!getOptions().ShowBranchCounts && Total != 0) {
674 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
675 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
H A DSourceCoverageViewText.cpp235 unsigned Total = R.ExecutionCount + R.FalseExecutionCount; local
237 if (!getOptions().ShowBranchCounts && Total != 0) {
238 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
239 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
/netbsd-current/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dordered_set.bench.cpp70 size_t Total = TableSize * NumTables; local
71 return Total < 100 || Total > 1000000;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp116 RemWeight = Dist.Total;
134 uint64_t NewTotal = Total + Amount;
137 bool IsOverflow = NewTotal < Total;
142 Total = NewTotal;
233 Total = 1;
245 else if (Total > UINT32_MAX)
246 Shift = 33 - countLeadingZeros(Total);
252 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
262 Total = 0;
273 Total
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DTypeLoc.cpp94 unsigned Total = 0; local
100 Total = llvm::alignTo(Total, Align);
101 Total += TypeSizer().Visit(TyLoc);
104 Total = llvm::alignTo(Total, MaxAlign);
105 return Total;
H A DOpenMPClause.cpp1459 getTrailingObjects<Expr *>()[I * static_cast<int>(ExprOffsets::Total) +
1462 getTrailingObjects<Expr *>()[I * static_cast<int>(ExprOffsets::Total) +
1467 SourceLocation>()[I * static_cast<int>(ParenLocsOffsets::Total) +
1471 SourceLocation>()[I * static_cast<int>(ParenLocsOffsets::Total) +
1481 getTrailingObjects<Expr *>()[I * static_cast<int>(ExprOffsets::Total) +
1484 getTrailingObjects<Expr *>()[I * static_cast<int>(ExprOffsets::Total) +
1488 SourceLocation>()[I * static_cast<int>(ParenLocsOffsets::Total) +
1491 SourceLocation>()[I * static_cast<int>(ParenLocsOffsets::Total) +
1501 static_cast<int>(ExprOffsets::Total) * Data.size(),
1502 static_cast<int>(ParenLocsOffsets::Total) * Dat
[all...]
/netbsd-current/external/bsd/kyua-atf-compat/dist/
H A Datf-report_test.sh46 Total time: X.XXXs
79 Total time: X.XXXs
99 Total time: X.XXXs
/netbsd-current/usr.sbin/ac/
H A Dac.c78 static time_t Total = 0; variable
251 Total += secs;
266 Total += secs;
553 show("total", Total);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTypePromotion.cpp367 APInt Total = ICmpConst->getValue().getBitWidth() < 32 ?
370 Total += OverflowConst->getValue().getBitWidth() < 32 ?
375 if (Total.getBitWidth() > Max.getBitWidth()) {
376 if (Total.ugt(Max.zext(Total.getBitWidth())))
378 } else if (Max.getBitWidth() > Total.getBitWidth()) {
379 if (Total.zext(Max.getBitWidth()).ugt(Max))
381 } else if (Total.ugt(Max))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kRegisterInfo.cpp137 for (size_t Reg = 0, Total = getNumRegs(); Reg != Total; ++Reg) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DGCOV.cpp535 formatBranchInfo(const GCOV::Options &Options, uint64_t Count, uint64_t Total) argument
536 : Options(Options), Count(Count), Total(Total) {}
539 if (!Total)
544 OS << "taken " << branchDiv(Count, Total) << "%";
549 uint64_t Total; member in struct:__anon2061::formatBranchInfo
/netbsd-current/external/bsd/nsd/dist/doc/
H A Ddifferences.tex126 Total number of differences: & 769753 & 100\% \\
129 Total number of packets inspected: &2244616 \\
165 Total number of differences: & 9611 & 100\% \\
168 Total number of packets inspected: & 100000 \\
639 Total number of differences: & 26 & 100\% \\
642 Total number of packets inspected: &2244616 \\
656 Total number of differences: & 311 & 100\% \\
659 Total number of packets inspected: &100000 \\
728 Total number of differences: & 611902 &100\% \\
731 Total numbe
[all...]

Completed in 207 milliseconds

123