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

  /external/webrtc/webrtc/modules/audio_processing/agc/
histogram.h 21 // This class implements the histogram of loudness with circular buffers so that
22 // the histogram tracks the last T seconds of the loudness.
23 class Histogram {
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();
36 // Reset the histogram, forget the past
    [all...]
histogram.cc 11 #include "webrtc/modules/audio_processing/agc/histogram.h"
61 Histogram::Histogram()
73 "histogram bin centers incorrect size");
76 Histogram::Histogram(int window_size)
87 Histogram::~Histogram() {}
89 void Histogram::Update(double rms, double activity_probaility) {
90 // If circular histogram is activated then remove the oldest entry
    [all...]
  /art/runtime/base/
histogram.h 26 // Creates a data histogram for a better understanding of statistical data.
27 // Histogram analysis goes beyond simple mean and standard deviation to provide
31 template <class Value> class Histogram {
37 friend class Histogram<Value>;
42 // Used by the cumulative timing logger to search the histogram set using for an existing split
44 explicit Histogram(const char* name);
46 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
100 // Add more buckets to the histogram to fill in a new value that exceeded
106 // Number of samples placed in histogram.
109 // histogram percentiles are. Grows adaptively when we hit max buckets
    [all...]
histogram-inl.h 25 #include "histogram.h"
33 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
43 template <class Value> inline void Histogram<Value>::AdjustAndAddValue(Value value) {
47 template <class Value> inline Histogram<Value>::Histogram(const char* name)
55 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width,
66 inline void Histogram<Value>::GrowBuckets(Value new_max) {
88 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
89 // Since this is only a linear histogram, bucket index can be found simply wit
    [all...]
  /external/libchrome/base/metrics/
histogram.h 5 // Histogram is an object that aggregates statistics, and can summarize them in
12 // For Histogram(exponential histogram), LinearHistogram and CustomHistogram,
20 // Each use of a histogram with the same name will reference the same underlying
21 // data, so it is safe to record to the same histogram from multiple locations
22 // in the code. It is a runtime error if all uses of the same histogram do not
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
37 // That bucket allocation would actually result from construction of a histogram
    [all...]
histogram.cc 5 // Histogram is an object that aggregates statistics, and can summarize them in
10 #include "base/metrics/histogram.h"
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;
63 // We use the arguments to find or create the local version of the histogram
71 bool ValidateRangeChecksum(const HistogramBase& histogram,
73 const Histogram& casted_histogram =
74 static_cast<const Histogram&>(histogram);
96 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
390 HistogramBase* histogram = Histogram::FactoryGet( local
597 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
696 HistogramBase* histogram = LinearHistogram::FactoryGet( local
711 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
756 HistogramBase* histogram = BooleanHistogram::FactoryGet( local
775 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
868 HistogramBase* histogram = CustomHistogram::FactoryGet( local
    [all...]
  /external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/OcvTransform/
OcvTransform.h 48 Histogram,
  /external/v8/tools/
eval_gc_nvp.py 46 class Histogram:
48 self.histogram = {}
54 if index not in self.histogram:
55 self.histogram[index] = 0
56 self.histogram[index] += 1
60 keys = self.histogram.keys()
68 str(min_value), str(max_value), self.histogram[i]))
77 def __init__(self, key, histogram, csv, percentiles):
80 self.histogram = histogram
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java 24 public class Histogram extends TestBase {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Histogram.java 24 public class Histogram extends TestBase {
31 public Histogram(boolean useIntrisic) {
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
_bitmap.py 7 tools: crop, find bounding box of a color and compute histogram of color values.
27 HISTOGRAM = 1
65 def Histogram(self, ignore_color, tolerance):
67 response = self._RunCommand(_BitmapTools.HISTOGRAM,
240 return self._PrepareTools().Histogram(ignore_color, tolerance)
bitmaptools.cc 16 HISTOGRAM = 1,
169 bool Histogram(const Bitmap& bmp) {
173 fprintf(stderr, "Could not parse HISTOGRAM command.\n");
256 case HISTOGRAM:
257 if (!Histogram(bmp)) return -1;
  /external/v8/src/
counters.h 33 // a histogram for passing to the AddHistogramSample function
39 // to a histogram created with CreateHistogram function
59 // Create a histogram by name. If the create is successful,
72 // Add a sample to a histogram created with the CreateHistogram
74 void AddHistogramSample(void* histogram, int sample) {
76 return add_histogram_sample_function_(histogram, sample);
170 // A Histogram represents a dynamically created histogram in the StatsTable.
171 // It will be registered with the histogram system on first use.
172 class Histogram {
    [all...]
  /hardware/ti/omap4-aah/domx/omx_core/inc/
OMX_TI_IVCommon.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winioctl.h 771 PHISTOGRAM_BUCKET Histogram;
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/libs/
lwjgl.jar 

Completed in 504 milliseconds