HomeSort by relevance Sort by last modified time
    Searched defs:Counts (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 115 OS << "\t;;; Out-edge counts:";
159 std::vector<std::pair<BasicBlock*, double> > Counts;
167 Counts.push_back(std::make_pair(BB, w));
211 for (unsigned i = 0, e = Counts.size(); i != e; ++i)
212 TotalExecutions += Counts[i].second;
215 sort(Counts.begin(), Counts.end(),
223 unsigned BlocksToPrint = Counts.size();
226 if (Counts[i].second == 0) break;
227 Function *F = Counts[i].first->getParent()
    [all...]
  /external/chromium/base/metrics/
histogram.h 274 typedef std::vector<Count> Counts;
338 Count counts(size_t i) const { return counts_[i]; } function in class:base::Histogram::SampleSet
353 Counts counts_;
365 // count to the sum of the counts in all buckets, and detect problems. Note
429 // Check to see if bucket ranges, counts and tallies in the snapshot are
  /external/valgrind/main/cachegrind/
cg_merge.c 212 ULong* counts; member in struct:__anon12269
214 Counts;
233 where innerMap is WordFM line-number=UWord Counts */
236 // Summary counts (computed whilst parsing)
238 Counts* summary;
271 static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts )
274 Counts* cts = malloc(sizeof(Counts));
279 cts->counts = malloc(n_counts * sizeof(ULong))
480 Counts* counts; local
    [all...]

Completed in 65 milliseconds