Home
last modified time | relevance | path

Searched refs:histograms_ (Results 1 – 10 of 10) sorted by relevance

/external/libchrome/base/metrics/
Dstatistics_recorder.cc88 HistogramBase*& registered = top_->histograms_[name]; in RegisterOrDeleteDuplicate()
197 const HistogramMap::const_iterator it = top_->histograms_.find(name); in FindHistogram()
198 return it != top_->histograms_.end() ? it->second : nullptr; in FindHistogram()
250 const HistogramMap::const_iterator it = top_->histograms_.find(name); in SetCallback()
251 if (it != top_->histograms_.end()) in SetCallback()
265 const HistogramMap::const_iterator it = top_->histograms_.find(name); in ClearCallback()
266 if (it != top_->histograms_.end()) in ClearCallback()
283 return top_->histograms_.size(); in GetHistogramCount()
291 const HistogramMap::iterator found = top_->histograms_.find(name); in ForgetHistogramForTesting()
292 if (found == top_->histograms_.end()) in ForgetHistogramForTesting()
[all …]
Dstatistics_recorder.h277 HistogramMap histograms_; variable
/external/webrtc/test/testsupport/
Dperf_test_histogram_writer.cc39 histograms_.clear(); in ClearResults()
79 for (const auto& histogram : histograms_) { in Serialize()
112 if (histograms_.count(measurement_and_story) == 0) { in AddSample()
120 histograms_[measurement_and_story] = std::move(builder); in AddSample()
125 histograms_[measurement_and_story]->AddDiagnostic( in AddSample()
131 histograms_[measurement_and_story]->AddSample(value / 8); in AddSample()
133 histograms_[measurement_and_story]->AddSample(value); in AddSample()
186 std::map<std::string, std::unique_ptr<catapult::HistogramBuilder>> histograms_
/external/brotli/c/enc/
Dmetablock_inc.h27 HistogramType* histograms_; /* not owned */
73 self->histograms_ = *histograms; in FN()
76 FN(HistogramClear)(&self->histograms_[0]); in FN()
88 HistogramType* histograms = self->histograms_; in FN()
176 FN(HistogramAdd)(&self->histograms_[self->curr_histogram_ix_], symbol); in FN()
Dmetablock.c317 HistogramLiteral* histograms_; /* not owned */ member
371 self->histograms_ = *histograms; in InitContextBlockSplitter()
374 ClearHistogramsLiteral(&self->histograms_[0], num_contexts); in InitContextBlockSplitter()
387 HistogramLiteral* histograms = self->histograms_; in ContextBlockSplitterFinishBlock()
408 &self->histograms_[self->curr_histogram_ix_], self->num_contexts_); in ContextBlockSplitterFinishBlock()
457 &self->histograms_[self->curr_histogram_ix_], self->num_contexts_); in ContextBlockSplitterFinishBlock()
507 HistogramAddLiteral(&self->histograms_[self->curr_histogram_ix_ + context], in ContextBlockSplitterAddSymbol()
/external/tensorflow/tensorflow/core/kernels/data/experimental/
Dstats_aggregator_ops.cc54 histogram::Histogram& histogram = histograms_[name]; in AddToHistogram()
67 for (const auto& pair : histograms_) { in EncodeToProto()
108 std::unordered_map<string, histogram::Histogram> histograms_
142 histogram::Histogram& histogram = histograms_[name]; in AddToHistogram()
233 std::unordered_map<string, histogram::Histogram> histograms_
Dchoose_fastest_dataset_op.cc200 histograms_(dataset()->inputs_.size()) {} in ChooseFastestIterator()
309 std::vector<histogram::Histogram> histograms_; member in tensorflow::data::experimental::__anon7579638e0111::ChooseFastestDatasetOp::Dataset::ChooseFastestIterator
335 histograms_[i].Add(static_cast<double>(EnvTime::NowNanos() - start)); in RunnerThread()
348 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex()
350 for (size_t i = 1, num_inputs = histograms_.size(); i < num_inputs; in SelectFastestInputIndex()
352 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
Dchoose_fastest_branch_dataset_op.cc342 histograms_(dataset()->captured_funcs_.size()) {} in ChooseFastestIterator()
461 DCHECK_LT(branch_index_, histograms_.size()); in GetNextFromExperiment()
470 histograms_[branch_index_].Add( in GetNextFromExperiment()
483 double best_percentile = histograms_[0].Percentile(kPercentile); in SelectFastestInputIndex()
485 for (size_t i = 1, num_inputs = histograms_.size(); i < num_inputs; in SelectFastestInputIndex()
487 double percentile = histograms_[i].Percentile(kPercentile); in SelectFastestInputIndex()
502 DCHECK_LT(branch_index, histograms_.size()); in MakeCurrentIterator()
557 std::vector<histogram::Histogram> histograms_ TF_GUARDED_BY(mu_);
/external/webrtc/modules/audio_processing/ns/
Dsignal_model_estimator.cc154 histograms_.Update(features_); in Update()
157 prior_model_estimator_.Update(histograms_); in Update()
160 histograms_.Clear(); in Update()
Dsignal_model_estimator.h50 Histograms histograms_; variable