HomeSort by: relevance | last modified time | path
    Searched refs:Total (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
FunctionSummary.cpp 19 unsigned Total = 0;
21 Total += I.second.TotalBasicBlocks;
22 return Total;
26 unsigned Total = 0;
28 Total += I.second.VisitedBasicBlocks.count();
29 return Total;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SampleProfileLoaderBaseUtil.cpp 99 // total samples, these are callees that were never invoked at runtime.
135 uint64_t Total = 0;
137 Total += I.second.getSamples();
144 Total += countBodySamples(CalleeSamples, PSI);
147 return Total;
156 unsigned Total) const {
157 assert(Used <= Total &&
158 "number of used records cannot exceed the total number of records");
159 return Total > 0 ? Used * 100 / Total : 100
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Timer.cpp 185 static void printVal(double Val, double Total, raw_ostream &OS) {
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 {
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.getProcessTime(), OS)
    [all...]
TarWriter.cpp 73 // We need to compute total size twice because appending
74 // a length field could change total size by one.
75 int Total = Len + Twine(Len).str().size();
76 Total = Len + Twine(Total).str().size();
77 return (Twine(Total) + " " + Key + "=" + Val + "\n").str();
TimeProfiler.cpp 108 // Track total time taken by each "name", but only the topmost levels of
187 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);
  /src/external/gpl2/texinfo/dist/util/
fix-info-dir 47 Total="0"
250 Total=`expr "$Total" + "1"`
279 DONE_MSG="total menu item(s) were inserted into `pwd`/$DIR_FILE"
295 Total=`expr "$Total" + "1"`
300 DONE_MSG="total invalid menu item(s) were removed from `pwd`/$DIR_FILE"
304 Total=`expr "$Total" + "1"`
311 echo "$Total $DONE_MSG
    [all...]
  /src/external/bsd/kyua-cli/dist/integration/
cmd_report_test.sh 78 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
79 Total time: S.UUUs
90 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
91 Total time: S.UUUs
154 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
155 Total time: S.UUUs
171 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
172 Total time: S.UUUs
202 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
203 Total time: S.UUU
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslerror.c 233 * 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 = 0
    [all...]
  /src/usr.bin/systat/
syscall.c 59 struct vmtotal Total;
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));
vmstat.c 65 struct vmtotal Total;
418 show_vmstat_top(vmtotal_t *Total, uvmexp_sysctl_t *uvm, uvmexp_sysctl_t *uvm1)
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);
517 /* Get total size of metadata buffers */
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...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 301 Total = 3,
309 Total = 3,
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));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SampleProfileLoaderBaseUtil.h 43 unsigned computeCoverage(unsigned Used, unsigned Total) const;
78 /// based on the total number of samples available in this function and
SampleProfileLoaderBaseImpl.h 587 // subtracting the total block weight from all the known
854 unsigned Total = CoverageTracker.countBodyRecords(Samples, PSI);
855 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
859 Twine(Used) + " of " + Twine(Total) + " available profile records (" +
867 uint64_t Total = CoverageTracker.countBodySamples(Samples, PSI);
868 unsigned Coverage = CoverageTracker.computeCoverage(Used, Total);
872 Twine(Used) + " of " + Twine(Total) + " available profile samples (" +
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageViewHTML.cpp 341 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;
673 if (!getOptions().ShowBranchCounts && Total != 0) {
674 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
675 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
SourceCoverageViewText.cpp 235 unsigned Total = R.ExecutionCount + R.FalseExecutionCount;
237 if (!getOptions().ShowBranchCounts && Total != 0) {
238 TruePercent = ((double)(R.ExecutionCount) / (double)Total) * 100.0;
239 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 70 size_t Total = TableSize * NumTables;
71 return Total < 100 || Total > 1000000;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 116 RemWeight = Dist.Total;
134 uint64_t NewTotal = Total + Amount;
137 bool IsOverflow = NewTotal < Total;
141 // Update the total.
142 Total = NewTotal;
233 Total = 1;
238 // Determine how much to shift right so that the total fits into 32-bits.
245 else if (Total > UINT32_MAX)
246 Shift = 33 - countLeadingZeros(Total);
252 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypeLoc.cpp 94 unsigned Total = 0;
100 Total = llvm::alignTo(Total, Align);
101 Total += TypeSizer().Visit(TyLoc);
104 Total = llvm::alignTo(Total, MaxAlign);
105 return Total;
OpenMPClause.cpp 1103 // NumComponents x MappableComponent - the total of all the components in all
1156 // NumComponents x MappableComponent - the total of all the components in all
1206 // NumComponents x MappableComponent - the total of all the components in all
1268 // NumComponents x MappableComponent - the total of all the components in all
1317 // NumComponents x MappableComponent - the total of all the components in all
1364 // NumComponents x MappableComponent - the total of all the components in all
1459 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)
    [all...]
  /src/external/bsd/kyua-atf-compat/dist/
atf-report_test.sh 45 Test cases: 0 total, 0 skipped, 0 expected failures, 0 broken, 0 failed
46 Total time: X.XXXs
78 Test cases: 4 total, 2 skipped, 0 expected failures, 0 broken, 1 failed
79 Total time: X.XXXs
98 Test cases: 0 total, 0 skipped, 0 expected failures, 0 broken, 0 failed
99 Total time: X.XXXs
  /src/usr.sbin/ac/
ac.c 78 static time_t Total = 0;
251 Total += secs;
266 Total += secs;
350 * print total login time for 24hr period in decimal hours
360 (void)strftime(date, sizeof (date), "%b %e total",
476 * print yesterday's total
535 * print yesterday's total
554 show("total", Total);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TypePromotion.cpp 367 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))
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kRegisterInfo.cpp 137 for (size_t Reg = 0, Total = getNumRegs(); Reg != Total; ++Reg) {
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
GCOV.cpp 472 // Get the total execution count of loops among blocks on the same line.
535 formatBranchInfo(const GCOV::Options &Options, uint64_t Count, uint64_t Total)
536 : Options(Options), Count(Count), Total(Total) {}
539 if (!Total)
544 OS << "taken " << branchDiv(Count, Total) << "%";
549 uint64_t Total;
916 uint64_t total = 0; local
918 total += arc->count;
921 << formatBranchInfo(options, arc->count, total) << '\n'
    [all...]
  /src/external/bsd/nsd/dist/doc/
differences.tex 126 Total number of differences: & 769753 & 100\% \\
129 Total number of packets inspected: &2244616 \\
137 that are different gives the total number of differences, or 100\%
142 The total number of query packets is displayed at the bottom of the table.
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 \
    [all...]

Completed in 89 milliseconds

1 2 3