Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dslot-set.h38 for (int i = 0; i < kBuckets; i++) { in SlotSet()
44 for (int i = 0; i < kBuckets; i++) { in ~SlotSet()
158 if (current_bucket == kBuckets || bucket == nullptr) { in RemoveRange()
192 for (int bucket_index = 0; bucket_index < kBuckets; bucket_index++) { in Iterate()
234 for (int bucket_index = 0; bucket_index < kBuckets; bucket_index++) { in PreFreeEmptyBuckets()
245 for (int bucket_index = 0; bucket_index < kBuckets; bucket_index++) { in FreeEmptyBuckets()
274 static const int kBuckets = kMaxSlots / kCellsPerBucket / kBitsPerCell; variable
381 Bucket buckets_[kBuckets];
/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.h50 static constexpr size_t kBuckets = 20; variable
58 std::array<uint64_t, kBuckets> values_ = {};
Dheapprofd_producer.cc101 data.reserve(kBuckets); in GetData()
102 for (size_t i = 0; i < kBuckets; ++i) { in GetData()
103 if (i == kBuckets - 1) in GetData()
116 if (hibit >= kBuckets) in GetBucket()
117 return kBuckets - 1; in GetBucket()