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

  /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);
95 // Add more buckets to the histogram to fill in a new value that exceeded
101 // Number of samples placed in histogram.
104 // histogram percentiles are. Grows adaptively when we hit max buckets
    [all...]
histogram_test.cc 21 #include "histogram-inl.h"
26 // Histogram *hist(new Histogram("SimplePercentiles"));
37 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("MeanTest", 5));
55 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("VarianceTest", 5));
67 std::unique_ptr<Histogram<uint64_t>> hist(new Histogram<uint64_t>("Percentile", 5));
68 Histogram<uint64_t>::CumulativeData data
    [all...]
histogram-inl.h 25 #include "histogram.h"
32 template <class Value> inline void Histogram<Value>::AddValue(Value value) {
42 template <class Value> inline void Histogram<Value>::AdjustAndAddValue(Value value) {
46 template <class Value> inline Histogram<Value>::Histogram(const char* name)
54 inline Histogram<Value>::Histogram(const char* name, Value initial_bucket_width,
65 inline void Histogram<Value>::GrowBuckets(Value new_max) {
87 template <class Value> inline size_t Histogram<Value>::FindBucket(Value val) const {
88 // Since this is only a linear histogram, bucket index can be found simply wit
    [all...]
timing_logger.cc 26 #include "base/histogram-inl.h"
96 Histogram<uint64_t>* histogram; local
97 Histogram<uint64_t> dummy(label.c_str());
102 histogram = new Histogram<uint64_t>(label.c_str(), kInitialBucketSize, max_buckets);
103 histograms_.insert(histogram);
105 histogram = *it;
107 histogram->AddValue(delta_time);
112 bool operator()(const Histogram<uint64_t>* a, const Histogram<uint64_t>* b) const
    [all...]
timing_logger.h 20 #include "base/histogram.h"
51 bool operator()(const Histogram<uint64_t>* a, const Histogram<uint64_t>* b) const {
67 std::set<Histogram<uint64_t>*, HistogramComparator> histograms_ GUARDED_BY(lock_);
  /external/v8/src/
counters.cc 25 void Histogram::AddSample(int sample) {
31 void* Histogram::CreateHistogram() const {
59 name##_ = Histogram(#caption, min, max, num_buckets, isolate);
69 name##_ = Histogram(#caption, 0, 101, 100, isolate);
74 name##_ = Histogram(#caption, 1000, 500000, 50, isolate);
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...]
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Histogram.java 24 public class Histogram extends TestBase {
31 public Histogram(boolean useIntrisic) {
IPTestListJB.java 79 HISTOGRAM_SCRIPT ("Histogram script", RELAXED_FP, 20.f),
80 HISTOGRAM_INTRINSIC ("Histogram intrinsic", INTRINSIC, 18.f);
195 return new Histogram(false);
197 return new Histogram(true);
  /art/runtime/
leb128_test.cc 20 #include "base/histogram-inl.h"
276 std::unique_ptr<Histogram<uint64_t>> enc_hist(new Histogram<uint64_t>("Leb128EncodeSpeedTest", 5));
277 std::unique_ptr<Histogram<uint64_t>> dec_hist(new Histogram<uint64_t>("Leb128DecodeSpeedTest", 5));
301 Histogram<uint64_t>::CumulativeData enc_data;
305 Histogram<uint64_t>::CumulativeData dec_data;
thread_list.h 20 #include "base/histogram.h"
185 // Thread suspend time histogram. Only modified when all the threads are suspended, so guarding
187 Histogram<uint64_t> suspend_all_historam_ GUARDED_BY(Locks::mutator_lock_);
thread_list.cc 30 #include "base/histogram-inl.h"
55 suspend_all_historam_("suspend all histogram", 16, 64), long_suspend_(false) {
109 Histogram<uint64_t>::CumulativeData data;
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java 24 public class Histogram extends TestBase {
ImageProcessingActivity.java 103 HISTOGRAM ("Histogram"),
365 case HISTOGRAM:
366 mTest = new Histogram();
  /art/runtime/gc/collector/
garbage_collector.h 20 #include "base/histogram.h"
155 // Reset the cumulative timings and pause histogram.
187 Histogram<uint64_t> pause_histogram_ GUARDED_BY(pause_histogram_lock_);
garbage_collector.cc 25 #include "base/histogram-inl.h"
66 pause_histogram_lock_("pause histogram lock", kDefaultMutexLevel, true) {
206 Histogram<uint64_t>::CumulativeData cumulative_data;
  /art/runtime/gc/
heap.h     [all...]
  /external/blktrace/btt/doc/
btt.tex 404 \item[Q2D Histogram] A display of histogram buckets for the Q to D times
410 ==================== Q2D Histogram ====================
436 \item[\emph{file}\_qhist.dat] Provides histogram data for the size of
439 \item[\emph{file}\_dhist.dat] Provides histogram data for the size
471 \item[unplug histogram details] A data file per device containing
472 histogram output for the amount of IOs released at unplug time.
552 \newpage\section{\label{sec:hist}Histogram Data Files}
554 The histogram data files provide information concerning incoming and
555 outgoing IO sizes (in blocks). For simplicity, the histogram bucket
    [all...]
  /external/opencv/cv/src/
cvsmooth.cpp 537 * This structure represents a two-tier histogram. The first tier (known as the
550 } Histogram;
553 * HOP is short for Histogram OPeration. This macro makes an operation \a op on
554 * histogram \a h for pixel value \a x. It takes care of handling both levels.
606 * Subtracts histogram \a x from \a y and stores the result in \a y. Makes use
656 Histogram H[4];
744 /* Update corresponding histogram segment */
    [all...]
  /external/mesa3d/src/mapi/glapi/tests/
check_table.cpp 933 { "glHistogram", _O(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/mesa3d/include/GL/
gl_mangle.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/GL/
gl_mangle.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/GL/
gl_mangle.h     [all...]

Completed in 983 milliseconds