Home
last modified time | relevance | path

Searched refs:histogram_ (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/agc/
Dagc.cc36 histogram_(Histogram::Create(kNumAnalysisFrames)), in Agc()
59 histogram_->Update(rms[i], probabilities[i]); in Process()
70 if (histogram_->num_updates() < kNumAnalysisFrames) { in GetRmsErrorDb()
75 if (histogram_->AudioContent() < kNumAnalysisFrames * kActivityThreshold) { in GetRmsErrorDb()
80 double loudness = Linear2Loudness(histogram_->CurrentRms()); in GetRmsErrorDb()
82 histogram_->Reset(); in GetRmsErrorDb()
87 histogram_->Reset(); in Reset()
Dagc.h51 rtc::scoped_ptr<Histogram> histogram_; variable
/external/tensorflow/tensorflow/core/lib/histogram/
Dhistogram.cc234 return histogram_.DecodeFromProto(proto); in DecodeFromProto()
239 histogram_.Clear(); in Clear()
244 histogram_.Add(value); in Add()
250 histogram_.EncodeToProto(proto, preserve_zero_buckets); in EncodeToProto()
255 return histogram_.Median(); in Median()
260 return histogram_.Percentile(p); in Percentile()
265 return histogram_.Average(); in Average()
270 return histogram_.StandardDeviation(); in StandardDeviation()
275 return histogram_.ToString(); in ToString()
Dhistogram.h113 : histogram_(custom_bucket_limits) {} in ThreadSafeHistogram()
133 Histogram histogram_ GUARDED_BY(mu_);
/external/libchrome/base/metrics/
Dsingle_sample_metrics.cc53 : histogram_(Histogram::FactoryGet(histogram_name, in DefaultSingleSampleMetric()
62 DCHECK(histogram_); in DefaultSingleSampleMetric()
67 if (sample_ < 0 || !histogram_) in ~DefaultSingleSampleMetric()
69 histogram_->Add(sample_); in ~DefaultSingleSampleMetric()
Dsingle_sample_metrics.h93 HistogramBase* const histogram_;
Dhistogram.cc1033 : histogram_(static_cast<LinearHistogram*>( in ScaledLinearHistogram()
1040 DCHECK(histogram_); in ScaledLinearHistogram()
1046 remainders_.resize(histogram_->bucket_count(), 0); in ScaledLinearHistogram()
1059 static_cast<int32_t>(histogram_->bucket_count() - 1); in AddScaledCount()
1085 histogram_->AddCount(value, scaled_count); in AddScaledCount()
Dhistogram.h481 LinearHistogram* histogram() { return histogram_; } in histogram()
486 LinearHistogram* const histogram_;
/external/v8/src/
Dcounters.h215 bool Enabled() { return histogram_ != nullptr; } in Enabled()
237 histogram_(nullptr), in Histogram()
245 void Reset() { histogram_ = CreateHistogram(); } in Reset()
256 void* histogram_; variable
294 : histogram_(histogram), isolate_(isolate) { in histogram_() function
295 histogram_->Start(&timer_, isolate); in histogram_()
298 ~TimedHistogramScope() { histogram_->Stop(&timer_, isolate_); } in ~TimedHistogramScope()
302 TimedHistogram* histogram_; variable
320 : histogram_(histogram), async_counters_(std::move(async_counters)) { in AsyncTimedHistogram()
321 histogram_->AssertReportsToCounters(async_counters_.get()); in AsyncTimedHistogram()
[all …]
Dcounters.cc72 counters_->AddHistogramSample(histogram_, sample); in AddSample()
/external/tensorflow/tensorflow/core/lib/monitoring/
Dsampler.h52 : histogram_(bucket_limits) {} in SamplerCell()
63 histogram::ThreadSafeHistogram histogram_;
175 inline void SamplerCell::Add(const double sample) { histogram_.Add(sample); } in Add()
179 histogram_.EncodeToProto(&pb, true /* preserve_zero_buckets */); in value()
/external/grpc-grpc/test/cpp/qps/
Dclient.h312 n->Swap(&histogram_); in BeginSwap()
318 hist->Merge(histogram_); in MergeStatsInto()
329 histogram_.Add(entry->value()); in UpdateHistogram()
369 Histogram histogram_; variable
/external/ImageMagick/Magick++/lib/Magick++/
DSTL.h2207 void colorHistogram( Container *histogram_, const Image image) in colorHistogram() argument
2218 histogram_->clear(); in colorHistogram()
2223 histogram_->insert( histogram_->end(), std::pair<const Color,size_t> in colorHistogram()