HomeSort by relevance Sort by last modified time
    Searched refs:histogram (Results 76 - 100 of 156) sorted by null

1 2 34 5 6 7

  /external/chromium_org/third_party/tcmalloc/chromium/src/gperftools/
malloc_extension.h 107 int histogram[kMallocHistogramSize]);
  /external/chromium_org/third_party/tcmalloc/vendor/src/gperftools/
malloc_extension.h 107 int histogram[kMallocHistogramSize]);
  /external/chromium_org/chrome/browser/prefs/
pref_metrics_service_unittest.cc 6 #include "base/metrics/histogram.h"
76 base::HistogramBase* histogram = local
78 if (!histogram) {
82 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
122 // Since histogram samples are recorded by a global StatisticsRecorder, we
157 // other histogram data should be collected.
pref_metrics_service.cc 10 #include "base/metrics/histogram.h"
42 // to the array and add a corresponding value to the histogram enum.
214 base::HistogramBase* histogram = base::BooleanHistogram::FactoryGet(
216 histogram->Add(boolean_value);
225 base::HistogramBase* histogram = base::LinearHistogram::FactoryGet(
231 histogram->Add(integer_value);
  /external/chromium_org/net/url_request/
url_request_throttler_unittest.cc 8 #include "base/metrics/histogram.h"
31 using base::Histogram;
181 // After calling this function, histogram snapshots in |samples_| contain
212 // Must retrieve original samples for each histogram for comparison
215 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
216 if (histogram) {
217 original_samples_[name] = histogram->SnapshotSamples().release();
234 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local
235 if (histogram) {
236 ASSERT_EQ(HistogramBase::kUmaTargetedHistogramFlag, histogram->flags())
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
filter.js 84 * Return a color histogram for an image.
88 * histogram.
539 * @param {Object} options Histogram for autofix.
544 filter.autofix.stretchColors(options.histogram.r),
545 filter.autofix.stretchColors(options.histogram.g),
546 filter.autofix.stretchColors(options.histogram.b));
552 * @param {Array.<number>} channelHistogram Histogram to calculate range.
566 * Return a range that encloses non-zero elements values in a histogram array.
567 * @param {Array.<number>} channelHistogram Histogram to analyze.
568 * @return {{first: number, last: number}} Channel range in histogram
    [all...]
image_adjust.js 127 * histogram.
187 this.update({histogram: this.getHistogram()});
  /external/chromium_org/chrome/browser/search/
search_unittest.cc 120 base::HistogramBase* histogram = GetHistogram(); local
121 if (histogram) {
122 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
137 base::HistogramBase* histogram = GetHistogram(); local
138 if (histogram) {
139 scoped_ptr<base::HistogramSamples> samples(histogram->SnapshotSamples());
  /external/chromium_org/sql/
connection.cc 13 #include "base/metrics/histogram.h"
219 base::HistogramBase* histogram = local
220 base::Histogram::FactoryGet(
223 if (histogram)
224 histogram->Add(sample);
840 // Histogram failures specific to initial open for debugging
989 // TODO(shess): The histogram macros create a bit of static storage
990 // for caching the histogram object. This code shouldn't execute
994 base::HistogramBase* histogram = local
998 if (histogram)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
external_metrics.cc 23 #include "base/metrics/histogram.h"
46 if (!base::Histogram::InspectConstructionArguments(
49 base::HistogramBase* histogram =
51 if (!histogram)
53 return histogram->HasConstructionArguments(minimum, maximum, bucket_count);
229 DLOG(ERROR) << "bad histogram request: " << histogram_data;
234 DLOG(ERROR) << "Invalid histogram " << name
240 // Do not use the UMA_HISTOGRAM_... macros here. They cache the Histogram
242 base::HistogramBase* counter = base::Histogram::FactoryGet(
243 name, min, max, nbuckets, base::Histogram::kUmaTargetedHistogramFlag)
    [all...]
  /external/skia/tools/
bbh_shootout.cpp 33 struct Histogram {
34 Histogram() {
269 SkTArray<Histogram>& histogram) {
283 histogram[index - 1].fPath = path;
284 histogram[index - 1].fCpuTime = SkDoubleToScalar(timer.fCpu);
319 SkTArray<Histogram> histograms[kNumBenchmarks];
332 // Output gnuplot readable histogram data..
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.cc 11 #include "base/metrics/histogram.h"
381 int histogram[256] = {0}; local
382 color_utils::BuildLumaHistogram(bitmap, histogram);
384 int color_count = *std::max_element(histogram, histogram + 256);
  /external/chromium_org/chrome/browser/resources/file_manager/js/
metrics.js 118 // (Source: UMA_HISTOGRAM_ENUMERATION definition in base/metrics/histogram.h)
121 'type': 'histogram-linear',
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
NewChromaHistogramFilter.java 17 // Extract histogram from image.
19 package androidx.media.filterpacks.histogram;
35 * ChromaHistogramFilter takes in an image in HSVA format and computes a 2-D histogram with a
36 * 2 dimensional chroma histogram based on hue (column) and saturation (row) at the top and
37 * a 1-D value histogram in the last row. The number of bin in the value histogram equals to
65 .addOutputPort("histogram", Signature.PORT_REQUIRED, dataOut)
89 OutputPort outPort = getConnectedOutputPort("histogram");
  /external/chromium_org/ui/gfx/
color_utils.cc 196 void BuildLumaHistogram(const SkBitmap& bitmap, int histogram[256]) {
205 ++histogram[GetLuminanceForColor(bitmap.getColor(x, y))];
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BaseCluster.java 38 // Histogram illustrates the pattern of visit during time of day,
160 public void setHistogram(Map<String, Long> histogram) {
162 mHistogram.putAll(histogram);
  /external/chromium/base/metrics/
histogram.h 5 // Histogram is an object that aggregates statistics, and can summarize them in
15 // That bucket allocation would actually result from construction of a histogram
17 // Histogram count(L"some name", 1, 64, 8);
22 // in each consecutive bucket. The Histogram class automatically calculates
28 // at the low end of the histogram scale, but allows the histogram to cover a
32 // pointer to a histogram. This static is explicitly initialized on any thread
60 // Provide easy general purpose histogram in a macro, just like stats counters.
77 static base::Histogram* counter(NULL); \
79 counter = base::Histogram::FactoryGet(name, min, max, bucket_count,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelineOverviewPane.js 488 var histogram = new Array(width);
494 histogram[x] = Math.max(histogram[x] || 0, y);
504 for (var x = 0; x < histogram.length; x++) {
505 if (typeof histogram[x] === "undefined")
509 y = histogram[x];
513 y = histogram[x];
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary_unittest.cc 1075 HistogramBase* histogram = local
    [all...]
  /external/chromium_org/chrome/browser/resources/image_loader/
image_loader_client.js 57 * Records binary metrics. Counts for true and false are stored as a histogram.
58 * @param {string} name Histogram's name.
64 type: 'histogram-linear',
65 min: 1, // According to histogram.h, this should be 1 for enums.
72 * Records percent metrics, stored as a histogram.
73 * @param {string} name Histogram's name.
  /external/chromium_org/courgette/
adjustment_method_2.cc 511 typedef std::set<FreqView, FreqView::Greater> Histogram;
516 Histogram model_histogram_;
517 Histogram program_histogram_;
545 std::string HistogramToString(const ShinglePattern::Histogram& histogram,
548 size_t histogram_size = histogram.size();
550 for (ShinglePattern::Histogram::const_iterator p = histogram.begin();
551 p != histogram.end();
562 std::string HistogramToStringFull(const ShinglePattern::Histogram& histogram
    [all...]
  /external/v8/src/
d8.h 48 int32_t* Bind(const char* name, bool histogram);
288 static void AddHistogramSample(void* histogram, int sample);
  /external/libpng/
example.c 294 png_uint_16p histogram = NULL;
296 png_get_hIST(png_ptr, info_ptr, &histogram);
299 max_screen_colors, histogram, 0);
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc 365 // Collect graph and histogram data.
369 double histogram[kHistogramSize] = { 1.0 }; local
395 // Use the fps value to find the right bucket in the histogram.
400 histogram[bucket_index] += delta.InSecondsF();
401 max_bucket_value = std::max(histogram[bucket_index], max_bucket_value);
405 // Draw FPS histogram.
422 if (histogram[i] > 0) {
424 histogram[i] / max_bucket_value * histogram_bounds.width();
  /external/chromium_org/third_party/tcmalloc/chromium/src/
debugallocation.cc 766 int histogram[kMallocHistogramSize]) {
767 memset(histogram, 0, kMallocHistogramSize * sizeof(int));
771 stats_histogram_ = histogram;
    [all...]

Completed in 1542 milliseconds

1 2 34 5 6 7