/external/webrtc/src/modules/audio_processing/ns/ |
nsx_defines.h | 32 #define HIST_PAR_EST 1000 // histogram size for estimation of parameters 34 //bin size of histogram 43 //limit on spacing of two highest peaks in histogram: spacing determined by bin size 53 //criteria of weight of histogram peak to accept/reject feature
|
/external/chromium_org/v8/src/ |
counters.h | 30 // a histogram for passing to the AddHistogramSample function 36 // to a histogram created with CreateHistogram function 56 // Create a histogram by name. If the create is successful, 69 // Add a sample to a histogram created with the CreateHistogram 71 void AddHistogramSample(void* histogram, int sample) { 73 return add_histogram_sample_function_(histogram, sample); 167 // A Histogram represents a dynamically created histogram in the StatsTable. 168 // It will be registered with the histogram system on first use. 169 class Histogram { [all...] |
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_stats.h | 10 // This enum is used for the Bookmarks.EntryPoint histogram. 20 // This enum is used for the Bookmarks.LaunchLocation histogram.
|
/external/chromium_org/chrome/browser/ui/views/passwords/ |
manage_passwords_view_test.h | 45 // Get samples for |histogram|. 46 base::HistogramSamples* GetSamples(const char* histogram);
|
/external/chromium_org/components/nacl/renderer/ |
histogram.cc | 5 #include "components/nacl/renderer/histogram.h" 7 #include "base/metrics/histogram.h" 17 base::Histogram::FactoryGet( 23 // The histogram can be NULL if it is constructed with bad arguments. Ignore 93 base::HistogramBase* counter = base::Histogram::FactoryTimeGet( 109 base::HistogramBase* counter = base::Histogram::FactoryTimeGet( 125 base::HistogramBase* counter = base::Histogram::FactoryTimeGet( 139 base::HistogramBase* counter = base::Histogram::FactoryTimeGet(
|
/external/chromium_org/content/renderer/ |
stats_collection_controller.h | 36 // Retrieves a histogram and returns a JSON representation of it. 39 // Retrieves a histogram from the browser process and returns a JSON
|
/external/chromium_org/net/disk_cache/blockfile/ |
histogram_macros_v3.h | 5 // This file contains macros to simplify histogram reporting from the disk 8 // keeping track of a potentially large number of histogram objects that have to 24 counter = base::Histogram::FactoryGet( \ 26 base::Histogram::kUmaTargetedHistogramFlag); \ 43 counter = base::Histogram::FactoryTimeGet( \ 45 base::Histogram::kUmaTargetedHistogramFlag); \ 58 base::Histogram::kUmaTargetedHistogramFlag); \ 85 // Generates a UMA histogram of the given type, generating the proper name for
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
histogram.h | 2 * \file histogram.h 3 * Histogram.
|
/external/mesa3d/src/mesa/main/ |
histogram.h | 2 * \file histogram.h 3 * Histogram.
|
/external/chromium_org/base/metrics/ |
histogram_base.cc | 12 #include "base/metrics/histogram.h" 24 case HISTOGRAM: 25 return "HISTOGRAM"; 46 case HISTOGRAM: 47 return Histogram::DeserializeInfoImpl(iter);
|
sparse_histogram.cc | 23 HistogramBase* histogram = StatisticsRecorder::FindHistogram(name); local 25 if (!histogram) { 29 histogram = 32 DCHECK_EQ(SPARSE_HISTOGRAM, histogram->GetHistogramType()); 33 return histogram; 94 DLOG(ERROR) << "Pickle error decoding Histogram: " << histogram_name; 172 "Histogram: %s recorded %d samples",
|
histogram_snapshot_manager_unittest.cc | 10 #include "base/metrics/histogram.h" 21 virtual void RecordDelta(const HistogramBase& histogram, 23 recorded_delta_histogram_names_.push_back(histogram.histogram_name());
|
/external/chromium_org/tools/telemetry/telemetry/value/ |
histogram.py | 53 return 'histogram' 54 return 'unimportant-histogram' 57 # More buildbot insanity: perf_tests_results_helper requires the histogram 62 # This has to hand-JSONify the histogram to ensure the order of keys 67 # stringification of the histogram.
|
/external/neven/Embedded/common/src/b_ImageEm/ |
HistoEq.h | 36 /** Histogram equalization of image */ 40 /** Histogram equalization using histogram generated from subregion. 41 * While the histogram is taken only in the specified sub-section of the 46 * @param sectionPtrA section specifying region in image where histogram is
|
HistoEq16.h | 33 /** Histogram equalization of image */ 36 /** Histogram equalization using histogram generated from subregion. 37 * While the histogram is taken only in the specified sub-section of the 42 * @param sectionPtrA section specifying region in image where histogram is
|
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/gcov-src/ |
gcov-io.c | 443 /* Count number of non-zero histogram entries, and fill in a bit vector 444 of non-zero indices. The histogram is only currently computed for arc 451 if (csum->histogram[h_ix].num_counters > 0) 476 if (!csum->histogram[h_ix].num_counters) 478 gcov_write_unsigned (csum->histogram[h_ix].num_counters); 479 gcov_write_counter (csum->histogram[h_ix].min_value); 480 gcov_write_counter (csum->histogram[h_ix].cum_value); 605 memset (csum->histogram, 0, 627 the histogram index accordingly, then right shift and increment 642 csum->histogram[h_ix].num_counters = gcov_read_unsigned () [all...] |
/external/chromium_org/build/util/lib/common/ |
perf_tests_results_helper.py | 19 perf_result_data_type.UNIMPORTANT_HISTOGRAM: 'HISTOGRAM ', 20 perf_result_data_type.HISTOGRAM: '*HISTOGRAM '} 40 histogram = json.loads(histogram_json) 42 if not 'buckets' in histogram: 46 for bucket in histogram['buckets']: 60 for bucket in histogram['buckets']:
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
ntp_user_data_logger_unittest.cc | 8 #include "base/metrics/histogram.h" 23 base::HistogramBase* histogram = base::StatisticsRecorder::FindHistogram( local 26 return histogram ? histogram->SnapshotSamples()->TotalCount() : 0; 31 base::HistogramBase* histogram = base::StatisticsRecorder::FindHistogram( local 34 return histogram ? histogram->SnapshotSamples()->GetCount(value) : 0;
|
/external/chromium_org/components/translate/core/browser/ |
translate_browser_metrics_unittest.cc | 9 #include "base/metrics/histogram.h" 26 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_); local 27 if (histogram) 28 base_samples_ = histogram->SnapshotSamples(); 85 HistogramBase* histogram = StatisticsRecorder::FindHistogram(key_); local 86 if (!histogram) 88 samples_ = histogram->SnapshotSamples();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelineMemoryOverview.js | 89 var histogram = new Array(width); 101 histogram[x] = Math.max(histogram[x] || 0, y); 114 for (var x = 0; x < histogram.length; x++) { 115 if (typeof histogram[x] === "undefined") 119 y = histogram[x]; 122 var nextY = histogram[x];
|
TimelinePowerOverview.js | 157 var histogram = new Array(width); 164 histogram[x] = Math.max(histogram[x] || 0, y); 174 for (var x = 0; x < histogram.length; x++) { 175 if (typeof histogram[x] === "undefined") 179 y = histogram[x]; 183 y = histogram[x];
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/ |
HistogramView.java | 81 private void drawHistogram(Canvas canvas, int[] histogram, int color, PorterDuff.Mode mode) { 83 for (int i = 0; i < histogram.length; i++) { 84 if (histogram[i] > max) { 85 max = histogram[i]; 91 float wl = w / histogram.length; 114 for (int i = 0; i < histogram.length; i++) { 116 float l = histogram[i] * wh;
|
/external/jpeg/ |
jquant2.c | 34 * In the first pass over the image, we accumulate a histogram showing the 35 * usage count of each possible color. To keep the histogram to a reasonable 38 * in the same histogram cell. 81 * you'll probably want to tweak the histogram sizes too. 102 * First we have the histogram data structure and routines for creating it. 109 * To maintain a fully accurate histogram, we'd need to allocate a "long" 113 * enough results. This reduces the recommended histogram size from 256Kb 115 * (In the second pass the histogram space is re-used for pixel mapping data; 119 * machines, we can't just allocate the histogram in one chunk. Instead 132 #define HIST_C0_BITS 5 /* bits of precision in R/B histogram */ 201 hist3d histogram; \/* pointer to the histogram *\/ member in struct:__anon26541 230 register hist3d histogram = cquantize->histogram; local 318 hist3d histogram = cquantize->histogram; local 505 hist3d histogram = cquantize->histogram; local 861 hist3d histogram = cquantize->histogram; local 920 hist3d histogram = cquantize->histogram; local 954 hist3d histogram = cquantize->histogram; local 1170 hist3d histogram = cquantize->histogram; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jquant2.c | 34 * In the first pass over the image, we accumulate a histogram showing the 35 * usage count of each possible color. To keep the histogram to a reasonable 38 * in the same histogram cell. 81 * you'll probably want to tweak the histogram sizes too. 102 * First we have the histogram data structure and routines for creating it. 109 * To maintain a fully accurate histogram, we'd need to allocate a "long" 113 * enough results. This reduces the recommended histogram size from 256Kb 115 * (In the second pass the histogram space is re-used for pixel mapping data; 119 * machines, we can't just allocate the histogram in one chunk. Instead 132 #define HIST_C0_BITS 5 /* bits of precision in R/B histogram */ 201 hist3d histogram; \/* pointer to the histogram *\/ member in struct:__anon33048 230 register hist3d histogram = cquantize->histogram; local 318 hist3d histogram = cquantize->histogram; local 505 hist3d histogram = cquantize->histogram; local 861 hist3d histogram = cquantize->histogram; local 920 hist3d histogram = cquantize->histogram; local 954 hist3d histogram = cquantize->histogram; local 1170 hist3d histogram = cquantize->histogram; local [all...] |
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicHistogram.java | 20 * Intrinsic Histogram filter. 32 * Create an intrinsic for calculating the histogram of an uchar 57 * Process an input buffer and place the histogram into the 62 * have an RGBA input buffer but only want the histogram for 74 * Process an input buffer and place the histogram into the 79 * have an RGBA input buffer but only want the histogram for 132 * Set the output of the histogram. 32 bit integer types are 162 * Process an input buffer and place the histogram into the 176 * Process an input buffer and place the histogram into the
|