Home
last modified time | relevance | path

Searched refs:kBuckets (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/base/
Drandom_unittest.cc272 const int kBuckets = 100; in TEST() local
278 std::vector<unsigned int> buckets(kBuckets, 0); in TEST()
281 if (index >= 0 && index < kBuckets) { in TEST()
289 for (int n = 0; n < kBuckets; ++n) { in TEST()
/external/perfetto/src/profiling/memory/
Dheapprofd_producer.h59 static constexpr size_t kBuckets = 20; variable
67 std::array<uint64_t, kBuckets> values_ = {};
Dheapprofd_producer.cc102 data.reserve(kBuckets); in GetData()
103 for (size_t i = 0; i < kBuckets; ++i) { in GetData()
104 if (i == kBuckets - 1) in GetData()
117 if (hibit >= kBuckets) in GetBucket()
118 return kBuckets - 1; in GetBucket()