bucket_count      141 base/containers/scoped_ptr_hash_map.h   inline size_t bucket_count() const { return data_.bucket_count(); }
bucket_count       46 base/metrics/bucket_ranges.h   size_t bucket_count() const { return ranges_.size() - 1; }
bucket_count       15 base/metrics/bucket_ranges_unittest.cc   ASSERT_EQ(4u, ranges.bucket_count());
bucket_count       40 base/metrics/histogram.cc                             uint64* bucket_count,
bucket_count       46 base/metrics/histogram.cc       !iter->ReadUInt64(bucket_count) ||
bucket_count       57 base/metrics/histogram.cc       INT_MAX / sizeof(HistogramBase::Count) <= *bucket_count ||
bucket_count       58 base/metrics/histogram.cc       *bucket_count < 2) {
bucket_count       90 base/metrics/histogram.cc                                      size_t bucket_count,
bucket_count       93 base/metrics/histogram.cc       InspectConstructionArguments(name, &minimum, &maximum, &bucket_count);
bucket_count       99 base/metrics/histogram.cc     BucketRanges* ranges = new BucketRanges(bucket_count + 1);
bucket_count      113 base/metrics/histogram.cc   if (!histogram->HasConstructionArguments(minimum, maximum, bucket_count)) {
bucket_count      129 base/metrics/histogram.cc                                          size_t bucket_count,
bucket_count      132 base/metrics/histogram.cc                     bucket_count, flags);
bucket_count      162 base/metrics/histogram.cc   size_t bucket_count = ranges->bucket_count();
bucket_count      163 base/metrics/histogram.cc   while (bucket_count > ++bucket_index) {
bucket_count      167 base/metrics/histogram.cc     log_ratio = (log_max - log_current) / (bucket_count - bucket_index);
bucket_count      178 base/metrics/histogram.cc   ranges->set_range(ranges->bucket_count(), HistogramBase::kSampleType_MAX);
bucket_count      188 base/metrics/histogram.cc   for (size_t index = 0; index < bucket_count(); ++index) {
bucket_count      222 base/metrics/histogram.cc   return bucket_ranges_->bucket_count();
bucket_count      229 base/metrics/histogram.cc                                              size_t* bucket_count) {
bucket_count      239 base/metrics/histogram.cc   if (*bucket_count >= kBucketCount_MAX) {
bucket_count      241 base/metrics/histogram.cc              << *bucket_count;
bucket_count      242 base/metrics/histogram.cc     *bucket_count = kBucketCount_MAX - 1;
bucket_count      247 base/metrics/histogram.cc   if (*bucket_count < 3)
bucket_count      249 base/metrics/histogram.cc   if (*bucket_count > static_cast<size_t>(*maximum - *minimum + 2))
bucket_count      263 base/metrics/histogram.cc           (expected_bucket_count == bucket_count()));
bucket_count      268 base/metrics/histogram.cc   DCHECK_EQ(kSampleType_MAX, ranges(bucket_count()));
bucket_count      307 base/metrics/histogram.cc       pickle->WriteUInt64(bucket_count()) &&
bucket_count      357 base/metrics/histogram.cc   uint64 bucket_count;
bucket_count      361 base/metrics/histogram.cc                               &declared_max, &bucket_count, &range_checksum)) {
bucket_count      367 base/metrics/histogram.cc       histogram_name, declared_min, declared_max, bucket_count, flags);
bucket_count      400 base/metrics/histogram.cc   size_t largest_non_empty_bucket = bucket_count() - 1;
bucket_count      409 base/metrics/histogram.cc   for (size_t i = 0; i < bucket_count(); ++i) {
bucket_count      420 base/metrics/histogram.cc   for (size_t i = 0; i < bucket_count(); ++i) {
bucket_count      429 base/metrics/histogram.cc     if (0 == current && i < bucket_count() - 1 &&
bucket_count      431 base/metrics/histogram.cc       while (i < bucket_count() - 1 &&
bucket_count      451 base/metrics/histogram.cc   for (size_t i = 0; i < bucket_count() ; ++i) {
bucket_count      494 base/metrics/histogram.cc   params->SetInteger("bucket_count", static_cast<int>(bucket_count()));
bucket_count      504 base/metrics/histogram.cc   for (size_t i = 0; i < bucket_count(); ++i) {
bucket_count      509 base/metrics/histogram.cc       if (i != bucket_count() - 1)
bucket_count      528 base/metrics/histogram.cc                                            size_t bucket_count,
bucket_count      531 base/metrics/histogram.cc       name, minimum, maximum, bucket_count, flags, NULL);
bucket_count      537 base/metrics/histogram.cc                                                size_t bucket_count,
bucket_count      540 base/metrics/histogram.cc                     bucket_count, flags);
bucket_count      547 base/metrics/histogram.cc       size_t bucket_count,
bucket_count      551 base/metrics/histogram.cc       name, &minimum, &maximum, &bucket_count);
bucket_count      557 base/metrics/histogram.cc     BucketRanges* ranges = new BucketRanges(bucket_count + 1);
bucket_count      579 base/metrics/histogram.cc   if (!histogram->HasConstructionArguments(minimum, maximum, bucket_count)) {
bucket_count      629 base/metrics/histogram.cc   size_t bucket_count = ranges->bucket_count();
bucket_count      630 base/metrics/histogram.cc   for (size_t i = 1; i < bucket_count; ++i) {
bucket_count      632 base/metrics/histogram.cc         (min * (bucket_count - 1 - i) + max * (i - 1)) / (bucket_count - 2);
bucket_count      635 base/metrics/histogram.cc   ranges->set_range(ranges->bucket_count(), HistogramBase::kSampleType_MAX);
bucket_count      645 base/metrics/histogram.cc   uint64 bucket_count;
bucket_count      649 base/metrics/histogram.cc                               &declared_max, &bucket_count, &range_checksum)) {
bucket_count      654 base/metrics/histogram.cc       histogram_name, declared_min, declared_max, bucket_count, flags);
bucket_count      700 base/metrics/histogram.cc   uint64 bucket_count;
bucket_count      704 base/metrics/histogram.cc                               &declared_max, &bucket_count, &range_checksum)) {
bucket_count      769 base/metrics/histogram.cc                 ranges->range(ranges->bucket_count() - 1),
bucket_count      778 base/metrics/histogram.cc   for (size_t i = 1; i < bucket_ranges()->bucket_count(); ++i) {
bucket_count      795 base/metrics/histogram.cc   uint64 bucket_count;
bucket_count      799 base/metrics/histogram.cc                               &declared_max, &bucket_count, &range_checksum)) {
bucket_count      804 base/metrics/histogram.cc   vector<Sample> sample_ranges(bucket_count - 1);
bucket_count      174 base/metrics/histogram.h #define HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count      176 base/metrics/histogram.h         base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
bucket_count      188 base/metrics/histogram.h #define HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count      190 base/metrics/histogram.h         base::Histogram::FactoryGet(name, min, max, bucket_count, \
bucket_count      238 base/metrics/histogram.h #define DHISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count      239 base/metrics/histogram.h     HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count)
bucket_count      240 base/metrics/histogram.h #define DHISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) \
bucket_count      241 base/metrics/histogram.h     HISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count)
bucket_count      242 base/metrics/histogram.h #define DHISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count      243 base/metrics/histogram.h     HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count)
bucket_count      280 base/metrics/histogram.h #define DHISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count      281 base/metrics/histogram.h     DISCARD_5_ARGUMENTS(name, sample, min, max, bucket_count)
bucket_count      283 base/metrics/histogram.h #define DHISTOGRAM_CLIPPED_TIMES(name, sample, min, max, bucket_count) \
bucket_count      284 base/metrics/histogram.h     DISCARD_5_ARGUMENTS(name, sample, min, max, bucket_count)
bucket_count      286 base/metrics/histogram.h #define DHISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count      287 base/metrics/histogram.h     DISCARD_5_ARGUMENTS(name, sample, min, max, bucket_count)
bucket_count      322 base/metrics/histogram.h #define UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count      324 base/metrics/histogram.h         base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
bucket_count      336 base/metrics/histogram.h #define UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count      338 base/metrics/histogram.h         base::Histogram::FactoryGet(name, min, max, bucket_count, \
bucket_count      403 base/metrics/histogram.h                                    size_t bucket_count,
bucket_count      408 base/metrics/histogram.h                                        size_t bucket_count,
bucket_count      441 base/metrics/histogram.h   virtual size_t bucket_count() const;
bucket_count      453 base/metrics/histogram.h                                            size_t* bucket_count);
bucket_count      564 base/metrics/histogram.h                                    size_t bucket_count,
bucket_count      569 base/metrics/histogram.h                                        size_t bucket_count,
bucket_count      586 base/metrics/histogram.h       size_t bucket_count,
bucket_count      259 base/metrics/histogram_unittest.cc   size_t array_size = histogram->bucket_count();
bucket_count      284 base/metrics/histogram_unittest.cc   size_t bucket_count = test_custom_histogram->bucket_count();
bucket_count      285 base/metrics/histogram_unittest.cc   EXPECT_EQ(0, custom_samples->GetCountAtIndex(bucket_count - 2));
bucket_count      286 base/metrics/histogram_unittest.cc   EXPECT_EQ(3, custom_samples->GetCountAtIndex(bucket_count - 1));
bucket_count      400 base/metrics/histogram_unittest.cc   int64 bucket_count;
bucket_count      401 base/metrics/histogram_unittest.cc   EXPECT_TRUE(iter.ReadInt64(&bucket_count));
bucket_count      402 base/metrics/histogram_unittest.cc   EXPECT_EQ(8, bucket_count);
bucket_count      429 base/metrics/histogram_unittest.cc   int64 bucket_count;
bucket_count      433 base/metrics/histogram_unittest.cc               iter.ReadInt64(&bucket_count) && iter.ReadUInt32(&ui32));
bucket_count      434 base/metrics/histogram_unittest.cc   EXPECT_EQ(3, bucket_count);
bucket_count       18 base/metrics/sample_vector.cc     : counts_(bucket_ranges->bucket_count()),
bucket_count       20 base/metrics/sample_vector.cc   CHECK_GE(bucket_ranges_->bucket_count(), 1u);
bucket_count       90 base/metrics/sample_vector.cc   size_t bucket_count = bucket_ranges_->bucket_count();
bucket_count       91 base/metrics/sample_vector.cc   CHECK_GE(bucket_count, 1u);
bucket_count       93 base/metrics/sample_vector.cc   CHECK_LT(value, bucket_ranges_->range(bucket_count));
bucket_count       96 base/metrics/sample_vector.cc   size_t over = bucket_count;
bucket_count      119 base/metrics/sample_vector.cc   CHECK_GE(bucket_ranges_->bucket_count(), counts_->size());
bucket_count       40 base/metrics/statistics_recorder_unittest.cc                              size_t bucket_count) {
bucket_count       41 base/metrics/statistics_recorder_unittest.cc     BucketRanges* ranges = new BucketRanges(bucket_count + 1);
bucket_count       45 chrome/browser/chromeos/external_metrics.cc                  size_t bucket_count) {
bucket_count       47 chrome/browser/chromeos/external_metrics.cc       name, &minimum, &maximum, &bucket_count))
bucket_count       53 chrome/browser/chromeos/external_metrics.cc   return histogram->HasConstructionArguments(minimum, maximum, bucket_count);
bucket_count      136 chrome/browser/chromeos/login/user_image_manager_impl.cc   const size_t bucket_count(50);
bucket_count      139 chrome/browser/chromeos/login/user_image_manager_impl.cc       histogram_name, min_time, max_time, bucket_count,
bucket_count       94 chrome/browser/chromeos/memory/oom_priority_manager.cc                            size_t bucket_count) {
bucket_count      101 chrome/browser/chromeos/memory/oom_priority_manager.cc       bucket_count + 2,  // Account for the underflow and overflow bins.
bucket_count       62 chrome/browser/extensions/api/metrics_private/metrics_apitest.cc   int bucket_count;
bucket_count      127 chrome/browser/extensions/api/metrics_private/metrics_apitest.cc       for (int j = 0; j < sparse_histogram.bucket_count; ++j) {
bucket_count      117 chrome/browser/net/network_stats.cc                             uint32 bucket_count) {
bucket_count      119 chrome/browser/net/network_stats.cc       name, min, max, bucket_count,
bucket_count      694 chrome/browser/net/network_stats.cc   uint32 bucket_count = std::min(maximum_NAT_idle_seconds_ + 2, 50U);
bucket_count      699 chrome/browser/net/network_stats.cc                          bucket_count);
bucket_count      718 chrome/browser/net/network_stats.cc                          bucket_count);
bucket_count       71 chrome/browser/ui/webui/metrics_handler.cc   int bucket_count = int_boundary_value;
bucket_count       72 chrome/browser/ui/webui/metrics_handler.cc   while (bucket_count >= 100) {
bucket_count       73 chrome/browser/ui/webui/metrics_handler.cc     bucket_count /= 10;
bucket_count       80 chrome/browser/ui/webui/metrics_handler.cc           histogram_name, 1, int_boundary_value, bucket_count + 1,
bucket_count      108 chrome/renderer/pepper/pepper_uma_host.cc     uint32_t bucket_count) {
bucket_count      112 chrome/renderer/pepper/pepper_uma_host.cc   RETURN_IF_BAD_ARGS(min, max, bucket_count);
bucket_count      119 chrome/renderer/pepper/pepper_uma_host.cc           bucket_count,
bucket_count      134 chrome/renderer/pepper/pepper_uma_host.cc     uint32_t bucket_count) {
bucket_count      138 chrome/renderer/pepper/pepper_uma_host.cc   RETURN_IF_BAD_ARGS(min, max, bucket_count);
bucket_count      145 chrome/renderer/pepper/pepper_uma_host.cc           bucket_count,
bucket_count       49 chrome/renderer/pepper/pepper_uma_host.h       uint32_t bucket_count);
bucket_count       57 chrome/renderer/pepper/pepper_uma_host.h       uint32_t bucket_count);
bucket_count      466 content/child/blink_platform_impl.cc     const char* name, int sample, int min, int max, int bucket_count) {
bucket_count      470 content/child/blink_platform_impl.cc       base::Histogram::FactoryGet(name, min, max, bucket_count,
bucket_count       91 content/child/blink_platform_impl.h     const char* name, int sample, int min, int max, int bucket_count);
bucket_count       19 net/disk_cache/blockfile/histogram_macros.h #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count       22 net/disk_cache/blockfile/histogram_macros.h             name, min, max, bucket_count, \
bucket_count       36 net/disk_cache/blockfile/histogram_macros.h #define CACHE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count       39 net/disk_cache/blockfile/histogram_macros.h             name, min, max, bucket_count, \
bucket_count       20 net/disk_cache/blockfile/histogram_macros_v3.h #define CACHE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
bucket_count       25 net/disk_cache/blockfile/histogram_macros_v3.h             name, min, max, bucket_count, \
bucket_count       39 net/disk_cache/blockfile/histogram_macros_v3.h #define CACHE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
bucket_count       44 net/disk_cache/blockfile/histogram_macros_v3.h             name, min, max, bucket_count, \
bucket_count       46 net/disk_cache/blockfile/stats_histogram.cc   size_t bucket_count = disk_cache::Stats::kDataSizesLength;
bucket_count       52 net/disk_cache/blockfile/stats_histogram.cc     BucketRanges* ranges = new BucketRanges(bucket_count + 1);
bucket_count       65 net/disk_cache/blockfile/stats_histogram.cc   DCHECK(histogram->HasConstructionArguments(minimum, maximum, bucket_count));
bucket_count       45 ppapi/c/private/ppb_uma_private.h                                uint32_t bucket_count);
bucket_count       56 ppapi/c/private/ppb_uma_private.h                                 uint32_t bucket_count);
bucket_count       41 ppapi/cpp/private/uma_private.cc                                       uint32_t bucket_count) {
bucket_count       46 ppapi/cpp/private/uma_private.cc                            sample, min, max, bucket_count);
bucket_count       53 ppapi/cpp/private/uma_private.cc                                        uint32_t bucket_count) {
bucket_count       58 ppapi/cpp/private/uma_private.cc                             sample, min, max, bucket_count);
bucket_count       29 ppapi/cpp/private/uma_private.h                             uint32_t bucket_count);
bucket_count       35 ppapi/cpp/private/uma_private.h                              uint32_t bucket_count);
bucket_count     3888 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c static void Pnacl_M35_PPB_UMA_Private_HistogramCustomTimes(PP_Instance instance, struct PP_Var* name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count) {
bucket_count     3890 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c   iface->HistogramCustomTimes(instance, *name, sample, min, max, bucket_count);
bucket_count     3893 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c static void Pnacl_M35_PPB_UMA_Private_HistogramCustomCounts(PP_Instance instance, struct PP_Var* name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count) {
bucket_count     3895 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c   iface->HistogramCustomCounts(instance, *name, sample, min, max, bucket_count);
bucket_count     5311 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c     .HistogramCustomTimes = (void (*)(PP_Instance instance, struct PP_Var name, int64_t sample, int64_t min, int64_t max, uint32_t bucket_count))&Pnacl_M35_PPB_UMA_Private_HistogramCustomTimes,
bucket_count     5312 ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c     .HistogramCustomCounts = (void (*)(PP_Instance instance, struct PP_Var name, int32_t sample, int32_t min, int32_t max, uint32_t bucket_count))&Pnacl_M35_PPB_UMA_Private_HistogramCustomCounts,
bucket_count       46 ppapi/proxy/uma_private_resource.cc     uint32_t bucket_count) {
bucket_count       54 ppapi/proxy/uma_private_resource.cc                                                        bucket_count));
bucket_count       63 ppapi/proxy/uma_private_resource.cc     uint32_t bucket_count) {
bucket_count       71 ppapi/proxy/uma_private_resource.cc                                                         bucket_count));
bucket_count       33 ppapi/proxy/uma_private_resource.h                                     uint32_t bucket_count) OVERRIDE;
bucket_count       40 ppapi/proxy/uma_private_resource.h                                      uint32_t bucket_count) OVERRIDE;
bucket_count       25 ppapi/thunk/ppb_uma_private_thunk.cc                           uint32_t bucket_count) {
bucket_count       35 ppapi/thunk/ppb_uma_private_thunk.cc                                           bucket_count);
bucket_count       43 ppapi/thunk/ppb_uma_private_thunk.cc                            uint32_t bucket_count) {
bucket_count       53 ppapi/thunk/ppb_uma_private_thunk.cc                                            bucket_count);
bucket_count       23 ppapi/thunk/ppb_uma_singleton_api.h                                     uint32_t bucket_count) = 0;
bucket_count       30 ppapi/thunk/ppb_uma_singleton_api.h                                      uint32_t bucket_count) = 0;
bucket_count      339 third_party/tcmalloc/chromium/src/heap-profile-table.cc   int bucket_count = 0;
bucket_count      342 third_party/tcmalloc/chromium/src/heap-profile-table.cc       list[bucket_count++] = curr;
bucket_count      345 third_party/tcmalloc/chromium/src/heap-profile-table.cc   RAW_DCHECK(bucket_count == num_buckets_, "");
bucket_count      180 third_party/tcmalloc/vendor/src/heap-profile-table.cc     int* bucket_count) {
bucket_count      212 third_party/tcmalloc/vendor/src/heap-profile-table.cc   if (bucket_count != NULL) {
bucket_count      213 third_party/tcmalloc/vendor/src/heap-profile-table.cc     ++(*bucket_count);
bucket_count      288 third_party/tcmalloc/vendor/src/heap-profile-table.h                     int* bucket_count);