Searched defs:bucket_count (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium/net/disk_cache/
H A Dstats_histogram.h34 Sample maximum, size_t bucket_count)
35 : Histogram(name, minimum, maximum, bucket_count), init_(false) {}
44 virtual size_t bucket_count() const;
33 StatsHistogram(const std::string& name, Sample minimum, Sample maximum, size_t bucket_count) argument
H A Dstats_histogram.cc30 size_t bucket_count = disk_cache::Stats::kDataSizesLength; local
37 new StatsHistogram(name, minimum, maximum, bucket_count);
44 DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count));
71 size_t StatsHistogram::bucket_count() const { function in class:disk_cache::StatsHistogram
/external/chromium_org/base/metrics/
H A Dbucket_ranges.h46 size_t bucket_count() const { return ranges_.size() - 1; } function in class:base::BucketRanges
H A Dstatistics_recorder_unittest.cc38 size_t bucket_count) {
39 BucketRanges* ranges = new BucketRanges(bucket_count + 1);
35 CreateHistogram(const std::string& name, HistogramBase::Sample min, HistogramBase::Sample max, size_t bucket_count) argument
H A Dhistogram_unittest.cc259 size_t array_size = histogram->bucket_count();
284 size_t bucket_count = test_custom_histogram->bucket_count(); local
285 EXPECT_EQ(0, custom_samples->GetCountAtIndex(bucket_count - 2));
286 EXPECT_EQ(3, custom_samples->GetCountAtIndex(bucket_count - 1));
400 int64 bucket_count; local
401 EXPECT_TRUE(iter.ReadInt64(&bucket_count));
402 EXPECT_EQ(8, bucket_count);
429 int64 bucket_count; local
433 iter.ReadInt64(&bucket_count)
[all...]
H A Dsample_vector.cc18 : counts_(bucket_ranges->bucket_count()),
20 CHECK_GE(bucket_ranges_->bucket_count(), 1u);
86 size_t bucket_count = bucket_ranges_->bucket_count(); local
87 CHECK_GE(bucket_count, 1u);
89 CHECK_LT(value, bucket_ranges_->range(bucket_count));
92 size_t over = bucket_count;
115 CHECK_GE(bucket_ranges_->bucket_count(), counts_->size());
H A Dhistogram.cc40 uint64* bucket_count,
46 !iter->ReadUInt64(bucket_count) ||
57 INT_MAX / sizeof(HistogramBase::Count) <= *bucket_count ||
58 *bucket_count < 2) {
90 size_t bucket_count,
93 InspectConstructionArguments(name, &minimum, &maximum, &bucket_count);
99 BucketRanges* ranges = new BucketRanges(bucket_count + 1);
113 CHECK(histogram->HasConstructionArguments(minimum, maximum, bucket_count));
120 size_t bucket_count,
123 bucket_count, flag
35 ReadHistogramArguments(PickleIterator* iter, string* histogram_name, int* flags, int* declared_min, int* declared_max, uint64* bucket_count, uint32* range_checksum) argument
87 FactoryGet(const string& name, Sample minimum, Sample maximum, size_t bucket_count, int32 flags) argument
117 FactoryTimeGet(const string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count, int32 flags) argument
153 size_t bucket_count = ranges->bucket_count(); local
212 size_t Histogram::bucket_count() const { function in class:base::Histogram
217 InspectConstructionArguments(const string& name, Sample* minimum, Sample* maximum, size_t* bucket_count) argument
232 << *bucket_count; local
348 uint64 bucket_count; local
516 FactoryGet(const string& name, Sample minimum, Sample maximum, size_t bucket_count, int32 flags) argument
525 FactoryTimeGet(const string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count, int32 flags) argument
534 FactoryGetWithRangeDescription( const std::string& name, Sample minimum, Sample maximum, size_t bucket_count, int32 flags, const DescriptionPair descriptions[]) argument
611 size_t bucket_count = ranges->bucket_count(); local
627 uint64 bucket_count; local
682 uint64 bucket_count; local
777 uint64 bucket_count; local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_uma_private_impl.cc31 uint32_t bucket_count) {
32 RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);
42 bucket_count,
50 uint32_t bucket_count) {
51 RETURN_IF_BAD_ARGS(name, sample, min, max, bucket_count);
61 bucket_count,
28 HistogramCustomTimes(PP_Var name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count) argument
47 HistogramCustomCounts(PP_Var name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count) argument
/external/chromium_org/net/disk_cache/
H A Dstats_histogram.cc46 size_t bucket_count = disk_cache::Stats::kDataSizesLength; local
52 BucketRanges* ranges = new BucketRanges(bucket_count + 1);
65 DCHECK(histogram->HasConstructionArguments(minimum, maximum, bucket_count));
/external/chromium_org/chrome/browser/ui/webui/
H A Dmetrics_handler.cc70 int bucket_count = int_boundary_value; local
71 while (bucket_count >= 100) {
72 bucket_count /= 10;
79 histogram_name, 1, int_boundary_value, bucket_count + 1,
/external/chromium_org/cc/base/
H A Dscoped_ptr_hash_map.h141 inline size_t bucket_count() const { return data_.bucket_count(); } function in class:cc::ScopedPtrHashMap
/external/chromium/webkit/glue/
H A Dwebkitclient_impl.cc264 const char* name, int sample, int min, int max, int bucket_count) {
268 base::Histogram::FactoryGet(name, min, max, bucket_count,
263 histogramCustomCounts( const char* name, int sample, int min, int max, int bucket_count) argument
/external/chromium_org/chrome/browser/chromeos/
H A Dexternal_metrics.cc45 size_t bucket_count) {
47 name, &minimum, &maximum, &bucket_count))
53 return histogram->HasConstructionArguments(minimum, maximum, bucket_count);
42 CheckValues(const std::string& name, int minimum, int maximum, size_t bucket_count) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.h89 uint32_t bucket_count; // The number of buckets in this hash table. member in struct:llvm::DwarfAccelTable::TableHeader
100 bucket_count (0), hashes_count (0), header_data_len (data_len)
108 << "Bucket Count: " << bucket_count << "\n"
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profile-table.cc180 int* bucket_count) {
212 if (bucket_count != NULL) {
213 ++(*bucket_count);
178 GetBucket( int depth, const void* const key[], Bucket** table, int* bucket_count) argument
/external/chromium_org/webkit/child/
H A Dwebkitplatformsupport_impl.cc400 const char* name, int sample, int min, int max, int bucket_count) {
404 base::Histogram::FactoryGet(name, min, max, bucket_count,
399 histogramCustomCounts( const char* name, int sample, int min, int max, int bucket_count) argument
/external/stlport/stlport/stl/
H A D_hash_map.h224 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:hash_map
410 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:hash_multimap
H A D_hash_set.h219 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:hash_set
401 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:hash_multiset
H A D_unordered_map.h175 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:unordered_map
335 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:unordered_multimap
H A D_unordered_set.h161 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:unordered_set
311 size_type bucket_count() const { return _M_ht.bucket_count(); } function in class:unordered_multiset
H A D_hashtable.h391 size_type bucket_count() const { return _M_buckets.size() - 1; } function in class:hashtable
400 float load_factor() const { return (float)size() / (float)bucket_count(); }
603 { return _M_bkt_num_key(__key, bucket_count()); }
/external/stlport/stlport/stl/debug/
H A D_hashtable.h187 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
192 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
200 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
205 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
315 size_type bucket_count() const { return _M_non_dbg_impl.bucket_count(); } function in class:hashtable
318 _STLP_VERBOSE_ASSERT((__n < bucket_count()), _StlMsg_INVALID_ARGUMENT)
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_task.cc185 size_t bucket_count) {
194 counter_name, min, max, bucket_count,
215 size_t bucket_count) {
217 config, name, min, max, bucket_count);
180 GetTimesHistogramForConfig( const WebSocketExperimentTask::Config& config, const std::string& name, base::TimeDelta min, base::TimeDelta max, size_t bucket_count) argument
209 UpdateHistogramTimes( const WebSocketExperimentTask::Config& config, const std::string& name, base::TimeDelta sample, base::TimeDelta min, base::TimeDelta max, size_t bucket_count) argument
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc91 size_t bucket_count) {
97 maximum + 1, // Ensure bucket size of |maximum| / |bucket_count|.
98 bucket_count + 2, // Account for the underflow and overflow bins.
88 RecordLinearHistogram(const std::string& name, int sample, int maximum, size_t bucket_count) argument
/external/chromium/base/metrics/
H A Dhistogram.cc79 size_t bucket_count,
95 new Histogram(name, minimum, maximum, bucket_count);
103 DCHECK(histogram->HasConstructorArguments(minimum, maximum, bucket_count));
110 size_t bucket_count,
113 bucket_count, flags);
165 size_t largest_non_empty_bucket = bucket_count() - 1;
174 for (size_t i = 0; i < bucket_count(); ++i) {
185 for (size_t i = 0; i < bucket_count(); ++i) {
194 if (0 == current && i < bucket_count() - 1 && 0 == snapshot.counts(i + 1)) {
195 while (i < bucket_count()
76 FactoryGet(const std::string& name, Sample minimum, Sample maximum, size_t bucket_count, Flags flags) argument
107 FactoryTimeGet(const std::string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count, Flags flags) argument
240 size_t bucket_count; local
360 size_t Histogram::bucket_count() const { function in class:base::Histogram
371 HasConstructorArguments(Sample minimum, Sample maximum, size_t bucket_count) argument
378 HasConstructorTimeDeltaArguments(TimeDelta minimum, TimeDelta maximum, size_t bucket_count) argument
390 Histogram(const std::string& name, Sample minimum, Sample maximum, size_t bucket_count) argument
403 Histogram(const std::string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count) argument
773 FactoryGet(const std::string& name, Sample minimum, Sample maximum, size_t bucket_count, Flags flags) argument
800 FactoryTimeGet(const std::string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count, Flags flags) argument
820 LinearHistogram(const std::string& name, Sample minimum, Sample maximum, size_t bucket_count) argument
827 LinearHistogram(const std::string& name, TimeDelta minimum, TimeDelta maximum, size_t bucket_count) argument
[all...]

Completed in 327 milliseconds

12