HomeSort by relevance Sort by last modified time
    Searched refs:histograms_ (Results 1 - 10 of 10) sorted by null

  /external/webrtc/webrtc/test/
histogram.cc 35 std::map<std::string, SampleInfo> histograms_ GUARDED_BY(histogram_crit_);
42 if (histograms_.find(name) == histograms_.end()) {
43 histograms_.insert(std::make_pair(name, SampleInfo(name)));
45 auto it = histograms_.find(name);
52 if (histograms_.find(name) == histograms_.end()) {
53 histograms_.insert(std::make_pair(name, SampleInfo(name)));
55 auto it = histograms_.find(name);
73 const auto it = histograms_.find(name)
    [all...]
  /external/libchrome/base/metrics/
statistics_recorder.cc 88 HistogramBase*& registered = top_->histograms_[name];
197 const HistogramMap::const_iterator it = top_->histograms_.find(name);
198 return it != top_->histograms_.end() ? it->second : nullptr;
250 const HistogramMap::const_iterator it = top_->histograms_.find(name);
251 if (it != top_->histograms_.end())
265 const HistogramMap::const_iterator it = top_->histograms_.find(name);
266 if (it != top_->histograms_.end())
283 return top_->histograms_.size();
291 const HistogramMap::iterator found = top_->histograms_.find(name);
292 if (found == top_->histograms_.end()
    [all...]
statistics_recorder.h 277 HistogramMap histograms_; member in class:base::StatisticsRecorder
  /art/runtime/base/
timing_logger.cc 49 STLDeleteElements(&histograms_);
69 STLDeleteElements(&histograms_);
100 auto it = histograms_.find(&dummy);
101 if (it == histograms_.end()) {
105 histograms_.insert(histogram);
123 sorted_histograms(histograms_.begin(), histograms_.end());
timing_logger.h 73 std::set<Histogram<uint64_t>*, HistogramComparator> histograms_ GUARDED_BY(GetLock());
  /external/brotli/c/enc/
metablock_inc.h 27 HistogramType* histograms_; /* not owned */ local
73 self->histograms_ = *histograms;
76 FN(HistogramClear)(&self->histograms_[0]);
88 HistogramType* histograms = self->histograms_;
176 FN(HistogramAdd)(&self->histograms_[self->curr_histogram_ix_], symbol);
metablock.c 321 HistogramLiteral* histograms_; /* not owned */ member in struct:ContextBlockSplitter
375 self->histograms_ = *histograms;
378 ClearHistogramsLiteral(&self->histograms_[0], num_contexts);
391 HistogramLiteral* histograms = self->histograms_;
412 &self->histograms_[self->curr_histogram_ix_], self->num_contexts_);
461 &self->histograms_[self->curr_histogram_ix_], self->num_contexts_);
511 HistogramAddLiteral(&self->histograms_[self->curr_histogram_ix_ + context],
  /external/tensorflow/tensorflow/core/kernels/data/experimental/
stats_aggregator_ops.cc 50 histogram::Histogram& histogram = histograms_[name];
63 for (const auto& pair : histograms_) {
97 std::unordered_map<string, histogram::Histogram> histograms_ GUARDED_BY(mu_);
choose_fastest_dataset_op.cc 184 histograms_(dataset()->inputs_.size()) {}
291 std::vector<histogram::Histogram> histograms_; member in class:tensorflow::data::__anon45268::ChooseFastestDatasetOp::Dataset::ChooseFastestIterator
315 histograms_[i].Add(
329 double best_percentile = histograms_[0].Percentile(kPercentile);
331 for (size_t i = 1, num_inputs = histograms_.size(); i < num_inputs;
333 double percentile = histograms_[i].Percentile(kPercentile);
choose_fastest_branch_dataset_op.cc 324 histograms_(dataset()->funcs_.size()) {}
438 DCHECK_LT(branch_index_, histograms_.size());
444 histograms_[branch_index_].Add(
456 double best_percentile = histograms_[0].Percentile(kPercentile);
458 for (size_t i = 1, num_inputs = histograms_.size(); i < num_inputs;
460 double percentile = histograms_[i].Percentile(kPercentile);
475 DCHECK_LT(branch_index, histograms_.size());
522 std::vector<histogram::Histogram> histograms_ GUARDED_BY(mu_);

Completed in 1401 milliseconds