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

1 2

  /external/chromium/base/metrics/
histogram_unittest.cc 74 // Test a statistics recorder, by letting histograms register.
77 StatisticsRecorder::Histograms histograms; local
78 EXPECT_EQ(0U, histograms.size());
79 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
80 EXPECT_EQ(0U, histograms.size());
86 histograms.clear();
87 StatisticsRecorder::GetHistograms(&histograms); // Load up lists
88 EXPECT_EQ(1U, histograms.size());
92 histograms.clear()
152 StatisticsRecorder::Histograms histograms; local
231 StatisticsRecorder::Histograms histograms; local
    [all...]
histogram.cc 329 // Since snapshots of histograms are taken asynchronously relative to
335 // not the result of a corruption. If histograms show that 1 is "too tight"
997 HistogramMap* histograms = NULL; local
    [all...]
  /external/chromium/net/socket/
client_socket_handle.cc 95 ClientSocketPoolHistograms* histograms = pool_->histograms(); local
96 histograms->AddSocketType(reuse_type());
99 histograms->AddRequestTime(setup_time());
102 histograms->AddUnusedIdleTime(idle_time());
105 histograms->AddReusedIdleTime(idle_time());
socks_client_socket_pool.cc 222 ClientSocketPoolHistograms* histograms,
227 base_(max_sockets, max_sockets_per_group, histograms,
313 ClientSocketPoolHistograms* SOCKSClientSocketPool::histograms() const { function in class:net::SOCKSClientSocketPool
314 return base_.histograms();
socks_client_socket_pool.h 117 ClientSocketPoolHistograms* histograms,
161 virtual ClientSocketPoolHistograms* histograms() const;
tcp_client_socket_pool.h 126 ClientSocketPoolHistograms* histograms,
171 virtual ClientSocketPoolHistograms* histograms() const;
transport_client_socket_pool.h 147 ClientSocketPoolHistograms* histograms,
192 virtual ClientSocketPoolHistograms* histograms() const;
client_socket_pool.h 134 // The set of histograms specific to this pool. We can't use the standard
136 virtual ClientSocketPoolHistograms* histograms() const = 0;
tcp_client_socket_pool.cc 247 ClientSocketPoolHistograms* histograms,
251 : base_(max_sockets, max_sockets_per_group, histograms,
351 ClientSocketPoolHistograms* TCPClientSocketPool::histograms() const { function in class:net::TCPClientSocketPool
352 return base_.histograms();
transport_client_socket_pool.cc 425 ClientSocketPoolHistograms* histograms,
429 : base_(max_sockets, max_sockets_per_group, histograms,
529 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { function in class:net::TransportClientSocketPool
530 return base_.histograms();
ssl_client_socket_pool.h 186 ClientSocketPoolHistograms* histograms,
238 virtual ClientSocketPoolHistograms* histograms() const;
ssl_client_socket_pool.cc 497 ClientSocketPoolHistograms* histograms,
512 base_(max_sockets, max_sockets_per_group, histograms,
634 ClientSocketPoolHistograms* SSLClientSocketPool::histograms() const { function in class:net::SSLClientSocketPool
635 return base_.histograms();
client_socket_pool_base.h 638 ClientSocketPoolHistograms* histograms,
642 : histograms_(histograms),
752 ClientSocketPoolHistograms* histograms() const { function in class:net::ClientSocketPoolBase
792 // Histograms for the pool
socket_test_util.h 843 ClientSocketPoolHistograms* histograms,
    [all...]
socket_test_util.cc     [all...]
  /external/webp/src/enc/
histogram.c 59 + (uint64_t)size * sizeof(*set->histograms)
60 + (uint64_t)size * sizeof(**set->histograms);
66 set->histograms = (VP8LHistogram**)memory;
67 memory += size * sizeof(*set->histograms);
72 set->histograms[i] = bulk + i;
73 VP8LHistogramInit(set->histograms[i], cache_bits);
229 VP8LHistogram** const histograms = image->histograms; local
234 VP8LHistogramAddSinglePixOrCopy(histograms[ix], v);
266 // Copy histograms from in[] to out[]
    [all...]
histogram.h 10 // Models the histograms of literal and distance codes.
29 // A simple container for histograms of data.
43 // Collection of histograms with fixed capacity, allocated as one
48 VP8LHistogram** histograms; member in struct:__anon18224
67 // Allocate an array of pointer to histograms, allocated and initialized
  /external/chromium/chrome/browser/extensions/
extension_metrics_apitest.cc 28 // histograms. If the tests in test.js are modified, this array may need to be
113 base::StatisticsRecorder::Histograms histograms; local
114 base::StatisticsRecorder::GetHistograms(&histograms);
125 for (j = 0; j < histograms.size(); ++j) {
126 base::Histogram* histogram(histograms[j]);
136 EXPECT_LT(j, histograms.size());
  /external/linux-tools-perf/util/
annotate.h 43 * @histogram: Array of addr hit histograms per event being monitored
58 struct sym_hist histograms[0]; member in struct:annotated_source
73 return (((void *)&notes->src->histograms) +
  /external/chromium/chrome/browser/metrics/
histogram_synchronizer.h 24 // respond by gathering snapshots of all internal histograms, calculating what
29 // blocks the UI thread, waiting to populate an about:histograms tab) and the
73 // changes to histograms. Return when all changes have been acquired, or when
75 // main UI thread from about:histograms.
79 // changes to histograms. When all changes have been acquired, or when the
85 // This method is called on the IO thread. Deserializes the histograms and
86 // records that we have received histograms from a renderer process.
88 int sequence_number, const std::vector<std::string>& histograms);
92 // the need to supply, to the browser, any changes in their histograms.
126 // to update histograms, and to signal that thread when updates are completed
    [all...]
histogram_synchronizer.cc 113 const std::vector<std::string>& histograms) {
115 for (std::vector<std::string>::const_iterator it = histograms.begin();
116 it < histograms.end();
  /external/chromium/net/http/
http_proxy_client_socket_pool.h 178 ClientSocketPoolHistograms* histograms,
223 virtual ClientSocketPoolHistograms* histograms() const;
http_proxy_client_socket_pool.cc 424 ClientSocketPoolHistograms* histograms,
431 base_(max_sockets, max_sockets_per_group, histograms,
525 ClientSocketPoolHistograms* HttpProxyClientSocketPool::histograms() const { function in class:net::HttpProxyClientSocketPool
526 return base_.histograms();
  /external/chromium/chrome/common/
metrics_helpers.cc 194 // the code, but forgot to update the descriptive list of histograms. When
515 StatisticsRecorder::Histograms histograms; local
516 StatisticsRecorder::GetHistograms(&histograms);
517 for (StatisticsRecorder::Histograms::const_iterator it = histograms.begin();
518 histograms.end() != it;
536 // Crash if we detect that our histograms have been overwritten. This may be
  /external/chromium/chrome/browser/renderer_host/
chrome_render_message_filter.cc 100 const std::vector<std::string>& histograms) {
101 HistogramSynchronizer::DeserializeHistogramList(sequence_number, histograms);

Completed in 582 milliseconds

1 2