Searched defs:Histogram (Results 1 - 9 of 9) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/agc/
H A Dhistogram.h23 class Histogram { class in namespace:webrtc
25 // Create a non-sliding Histogram.
26 static Histogram* Create();
28 // Create a sliding Histogram, i.e. the histogram represents the last
30 static Histogram* Create(int window_size);
31 ~Histogram();
50 Histogram();
51 explicit Histogram(int window);
70 // Histogram of input RMS in Q10 with |kHistSize_| bins. In each 'Update(),'
H A Dhistogram.cc61 Histogram::Histogram() function in class:webrtc::Histogram
76 Histogram::Histogram(int window_size) function in class:webrtc::Histogram
87 Histogram::~Histogram() {}
89 void Histogram::Update(double rms, double activity_probaility) {
103 void Histogram::RemoveOldestEntryAndUpdate() {
114 void Histogram::RemoveTransient() {
128 void Histogram
[all...]
/external/libchrome/base/metrics/
H A Dhistogram.h5 // Histogram is an object that aggregates statistics, and can summarize them in
12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
25 // For Histogram and LinearHistogram, the maximum for a declared range should
32 // (Histogram::kBucketCount_MAX - 1).
34 // The buckets layout of class Histogram is exponential. For example, buckets
39 // Histogram count("some name", 1, 64, 8);
44 // in each consecutive bucket. The Histogram class automatically calculates
93 class Histogram;
99 class BASE_EXPORT Histogram : public HistogramBase { class in namespace:base
198 Histogram(cons
[all...]
H A Dhistogram.cc5 // Histogram is an object that aggregates statistics, and can summarize them in
48 DLOG(ERROR) << "Pickle error decoding Histogram: " << *histogram_name;
53 // checks above and beyond those in Histogram::Initialize()
59 DLOG(ERROR) << "Values error decoding Histogram: " << histogram_name;
73 const Histogram& casted_histogram =
74 static_cast<const Histogram&>(histogram);
85 const size_t Histogram::kBucketCount_MAX = 16384u;
87 HistogramBase* Histogram::FactoryGet(const std::string& name,
104 Histogram* tentative_histogram =
105 new Histogram(nam
335 Histogram::Histogram(const std::string& name, function in class:base::Histogram
[all...]
/external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/
H A DOcvTransform.h48 Histogram, enumerator in enum:ProcessingType
/external/v8/tools/
H A Deval_gc_nvp.py46 class Histogram: class in inherits:
155 histogram = Histogram(bucket_trait, not args.histogram_omit_empty)
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A D_bitmap.py64 def Histogram(self, ignore_color, tolerance): member in class:_BitmapTools
233 return self._PrepareTools().Histogram(ignore_color, tolerance)
H A Dbitmaptools.cc169 bool Histogram(const Bitmap& bmp) { function
257 if (!Histogram(bmp)) return -1;
/external/v8/src/
H A Dcounters.h168 // A Histogram represents a dynamically created histogram in the StatsTable.
170 class Histogram { class in namespace:v8::internal
172 Histogram() { } function in class:v8::internal::Histogram
173 Histogram(const char* name, function in class:v8::internal::Histogram
225 class HistogramTimer : public Histogram {
235 : Histogram(name, min, max, num_buckets, isolate),
313 class AggregatableHistogramTimer : public Histogram {
318 : Histogram(name, min, max, num_buckets, isolate) {}
370 template <typename Histogram>
381 explicit AggregatedMemoryHistogram(Histogram* backing_histogra
[all...]

Completed in 388 milliseconds