HomeSort by relevance Sort by last modified time
    Searched full:histogram (Results 151 - 175 of 1590) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/e2fsprogs/misc/
e2freefrag.c 71 info->histogram.fc_chunks[i] = 0;
72 info->histogram.fc_blocks[i] = 0;
84 info->histogram.fc_chunks[idx]++;
85 info->histogram.fc_blocks[idx] += chunk_size;
191 if (info->histogram.fc_chunks[i] != 0) {
199 info->histogram.fc_chunks[i],
200 info->histogram.fc_blocks[i],
201 (double)info->histogram.fc_blocks[i] * 100 /
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/
event_analyzing_sample.py 112 # to show the histogram in real number, but use a log2 algorithm.
133 print "\n%16s %8s %16s\n%s" % ("comm", "number", "histogram", "="*42)
138 print "\n%32s %8s %16s\n%s" % ("symbol", "number", "histogram", "="*58)
144 print "\n%40s %8s %16s\n%s" % ("dso", "number", "histogram", "="*74)
166 print "\n%16s %8s %16s\n%s" % ("comm", "number", "histogram", "="*42)
171 print "\n%32s %8s %16s\n%s" % ("symbol", "number", "histogram", "="*58)
178 print "\n%32s %8s %16s\n%s" % ("dse", "number", "histogram", "="*58)
184 print "\n%32s %8s %16s\n%s" % ("latency", "number", "histogram", "="*58)
  /external/chromium_org/components/password_manager/core/browser/
password_manager_metrics_util.cc 8 #include "base/metrics/histogram.h"
94 base::HistogramBase* histogram = local
101 histogram->Add(sample);
106 base::HistogramBase* histogram = local
109 base::Histogram::kNoFlags);
110 histogram->AddBoolean(sample);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_manager.h 39 // Read the inter-arrival time histogram. Mainly for testing purposes.
44 // inter-arrival time histogram and other statistics, as well as the
65 // Calculates the average inter-arrival time deviation from the histogram.
124 // Updates the histogram |iat_vector_|. The probability for inter-arrival time
136 IATVector iat_vector_; // Histogram of inter-arrival times.
137 int iat_factor_; // Forgetting factor for updating the IAT histogram (Q15).
  /external/opencv/cvaux/include/
cvaux.hpp 74 int get_hist_dims( int* dims = 0 ) const // returns number of histogram dimensions and sets
83 // set initial object rectangle (must be called before initial calculation of the histogram)
87 bool set_threshold( int threshold ) // threshold applied to the histogram bins
92 bool set_hist_dims( int c_dims, int* dims );// set the histogram parameters
103 // update object histogram
106 // reset histogram
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/res/raw/
camera_graph.xml 28 <import package="androidx.media.filterpacks.histogram" />
79 <filter class="NewChromaHistogramFilter" name="histogram" />
168 targetFilter="histogram" targetPort="image" />
169 <connect sourceFilter="histogram" sourcePort="histogram"
170 targetFilter="colorfulness" targetPort="histogram" />
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 15 #include "base/metrics/histogram.h"
159 // Log an event for a given |histogram| at a given element |position|. This
160 // routine exists because regular histogram macros are cached thus can't be used
161 // if the name of the histogram will change at a given call site.
162 void LogHistogramEvent(const std::string& histogram, int position,
165 histogram,
169 base::Histogram::kUmaTargetedHistogramFlag);
288 const std::string histogram = is_control_group_ ? local
290 LogHistogramEvent(histogram, index, num_sites_);
296 std::string histogram = base::StringPrintf local
366 const std::string histogram = is_control_group_ ? local
405 std::string histogram = base::StringPrintf( local
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis.cc 68 size_t FindOtsuThresholdingIndex(const std::vector<int>& histogram) {
71 double w1 = histogram[0]; // Total weight of the first class.
75 for (size_t i = 1; i < histogram.size(); ++i) {
76 w2 += histogram[i];
77 t2 += (0.5 + i) * histogram[i];
84 // Iterate through all possible ways of splitting the histogram.
85 for (size_t i = 1; i < histogram.size() - 1; i++) {
86 double bin_volume = (0.5 + i) * histogram[i];
87 w1 += histogram[i];
88 w2 -= histogram[i]
466 std::vector<int> histogram; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
uma_policy_browsertest.cc 5 #include "base/metrics/histogram.h"
83 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
91 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet(
128 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
157 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
187 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet(
269 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
276 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet(
286 base::HistogramBase* google_histogram = base::Histogram::FactoryGet(
293 base::HistogramBase* cnn_histogram = base::Histogram::FactoryGet
    [all...]
  /external/chromium_org/components/translate/core/common/
translate_metrics_unittest.cc 9 #include "base/metrics/histogram.h"
31 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_); local
32 if (histogram)
33 base_samples_ = histogram->SnapshotSamples();
125 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_); local
126 if (!histogram)
128 samples_ = histogram->SnapshotSamples();
  /external/chromium_org/net/cert/
multi_log_ct_verifier_unittest.cc 11 #include "base/metrics/histogram.h"
161 // Histogram-related helper methods
163 base::Histogram* histogram = static_cast<base::Histogram*>( local
166 if (histogram == NULL)
169 scoped_ptr<base::HistogramSamples> samples = histogram->SnapshotSamples();
  /external/neven/Embedded/common/src/b_ImageEm/
HistoEq.c 36 /** Computes grey level histogram of given image. */
45 /* init histogram array with 0 */
52 /* calculate histogram */
63 /** Computes grey level histogram of given image. */
91 /* init histogram with 0 */
98 /* calculate histogram */
113 /** equalize image using given histogram */
125 /* determine number of counts in histogram */
134 /* compute transfer function (cumulative histogram) */
HistoEq16.c 37 /** Computes grey level histogram of given image. */
45 /* init histogram array with 0 */
54 /* calculate histogram (assuming even image width) */
65 /** Computes grey level histogram of given image. */
94 /* init histogram with 0 */
101 /* calculate histogram */
119 /** equalize image using given histogram */
130 /* determine number of counts in histogram */
139 /* compute transfer function (cumulative histogram) */
  /external/chromium_org/chrome/common/extensions/api/
metrics_private.json 18 "enum": ["histogram-log", "histogram-linear"],
19 "description": "The type of metric, such as 'histogram-log' or 'histogram-linear'."
154 "description": "Increments the count associated with |value| in the sparse histogram defined by the |metricName|.",
  /external/chromium_org/components/metrics/chromeos/
metric_sample.cc 58 } else if (type_ == HISTOGRAM) {
59 return base::StringPrintf("histogram%c%s %d %d %d %d%c",
84 CHECK_EQ(type_, HISTOGRAM);
96 CHECK_EQ(type_, HISTOGRAM);
115 HISTOGRAM, histogram_name, sample, min, max, bucket_count));
  /external/chromium_org/tools/telemetry/telemetry/core/
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/chromium_org/chrome/browser/performance_monitor/
process_metrics_history.cc 8 #include "base/metrics/histogram.h"
87 // The histogram macros don't support variables as histogram names,
  /external/chromium_org/chrome/renderer/spellchecker/
hunspell_engine.cc 11 #include "base/metrics/histogram.h"
66 TimeTicks debug_start_time = base::Histogram::DebugNow();
71 base::Histogram::DebugNow() - debug_start_time);
  /external/chromium_org/google_apis/gcm/engine/
registration_request.h 36 // This enum is also used in an UMA histogram (GCMRegistrationRequestStatus
37 // enum defined in tools/metrics/histograms/histogram.xml). Hence the entries
53 // histogram enum accordingly.
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.h 49 // This enum is reused for histogram. When this needs to be modified, add a
50 // new enum for histogram and convert mode values into values in the new
78 // We're collecting data for histogram in the destructor. Note that calling
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
imagediffdb.py 117 diff_histogram = diff_image.histogram()
173 whitediff_image.histogram()[VALUES_PER_BAND - 1])
281 def _max_per_band(histogram):
282 """Given the histogram of an image, return the maximum value of each band
286 histogram: PIL histogram
288 Returns the maximum value of each band within the image histogram, as a list.
291 assert(len(histogram) % VALUES_PER_BAND == 0)
292 num_bands = len(histogram) / VALUES_PER_BAND
295 # the 'R' band makes up indices 0-255 in the histogram,
    [all...]
  /external/skia/gm/rebaseline_server/
imagediffdb.py 117 diff_histogram = diff_image.histogram()
173 whitediff_image.histogram()[VALUES_PER_BAND - 1])
281 def _max_per_band(histogram):
282 """Given the histogram of an image, return the maximum value of each band
286 histogram: PIL histogram
288 Returns the maximum value of each band within the image histogram, as a list.
291 assert(len(histogram) % VALUES_PER_BAND == 0)
292 num_bands = len(histogram) / VALUES_PER_BAND
295 # the 'R' band makes up indices 0-255 in the histogram,
    [all...]
  /external/chromium_org/extensions/browser/
extension_function_histogram_value.h 18 // extension function so that their usage can be recorded in histogram charts.
46 // *existing* histogram stream or in a *new* one.
49 // *existing* histogram stream, simply rename the enum entry to match
52 // value, so the same histogram stream will be used for recording
56 // *new* histogram stream, follow the instructions in step 1) and 2)
57 // above. This will effectively deprecate the old histogram stream and
  /external/chromium_org/base/metrics/
bucket_ranges.h 6 // tallied in the corresponding buckets of a histogram. Histograms that have
44 // [0, 1, 3, 7, INT_MAX], then the buckets in this histogram are
  /external/chromium_org/base/prefs/
persistent_pref_store.h 19 // distinctly in a histogram.
21 // server's meaning of the histogram.

Completed in 746 milliseconds

1 2 3 4 5 67 8 91011>>