Home
last modified time | relevance | path

Searched refs:bucket_count (Results 1 - 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dhistogram_macros.h31 #define ANGLE_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
32 ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count)
43 #define ANGLE_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
45 bucket_count)
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set.h511 size_t bucket_count) {
512 if (bucket_count != 0) {
513 return bucket_count;
861 explicit raw_hash_set(size_t bucket_count, const hasher& hash = hasher(),
866 if (bucket_count) {
867 capacity_ = NormalizeCapacity(bucket_count);
872 raw_hash_set(size_t bucket_count, const hasher& hash,
874 : raw_hash_set(bucket_count, hash, key_equal(), alloc) {}
876 raw_hash_set(size_t bucket_count, const allocator_type& alloc)
877 : raw_hash_set(bucket_count, hashe
[all...]
H A Dunordered_set_constructor_test.h47 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
57 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
70 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
86 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
94 EXPECT_GE(cm.bucket_count(), 123); in TYPED_TEST_P()
125 EXPECT_GE(m.bucket_count(), 123); in BucketCountAllocTest()
146 EXPECT_GE(m.bucket_count(), 123); in BucketCountHashAllocTest()
197 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
214 EXPECT_GE(m.bucket_count(), 123); in InputIteratorBucketAllocTest()
238 EXPECT_GE(m.bucket_count(), 12 in InputIteratorBucketHashAllocTest()
[all...]
H A Dunordered_map_constructor_test.h46 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
56 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
69 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
85 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
116 EXPECT_GE(m.bucket_count(), 123); in BucketCountAllocTest()
137 EXPECT_GE(m.bucket_count(), 123); in BucketCountHashAllocTest()
188 EXPECT_GE(m.bucket_count(), 123); in TYPED_TEST_P()
205 EXPECT_GE(m.bucket_count(), 123); in InputIteratorBucketAllocTest()
229 EXPECT_GE(m.bucket_count(), 123); in InputIteratorBucketHashAllocTest()
345 EXPECT_GE(m.bucket_count(), 12 in TYPED_TEST_P()
[all...]
H A Dunordered_set_modifiers_test.h82 const size_t original_capacity = m.bucket_count(); in TYPED_TEST_P()
84 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
86 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
101 const size_t original_capacity = m.bucket_count(); in TYPED_TEST_P()
103 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
H A Dunordered_map_modifiers_test.h90 const size_t original_capacity = m.bucket_count(); in TYPED_TEST_P()
92 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
95 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
110 const size_t original_capacity = m.bucket_count(); in TYPED_TEST_P()
112 EXPECT_EQ(m.bucket_count(), original_capacity); in TYPED_TEST_P()
H A Dhashtable_debug_hooks.h60 if (!c.bucket_count()) return {}; in GetNumProbes()
H A Draw_hash_set_test.cc864 const size_t c = t.bucket_count(); in MaxDensitySize()
865 while (c == t.bucket_count()) t.emplace(n++); in MaxDensitySize()
1476 EXPECT_EQ(0, t.bucket_count()); in TEST()
1483 EXPECT_NE(0, t.bucket_count()); in TEST()
1485 EXPECT_EQ(0, t.bucket_count()); in TEST()
1671 size_t c = t.bucket_count(); in TEST()
1672 for (n = 1; c == t.bucket_count(); ++n) t.emplace(n); in TEST()
1677 const size_t c = t.bucket_count(); in TEST()
1679 EXPECT_EQ(c, t.bucket_count()) << "rehashing threshold = " << n; in TEST()
1682 EXPECT_EQ(c, t.bucket_count()) << "rehashin in TEST()
[all...]
/third_party/node/deps/v8/src/zone/
H A Dzone-containers.h164 explicit ZoneUnorderedMap(Zone* zone, size_t bucket_count = 100) in ZoneUnorderedMap()
167 bucket_count, Hash(), KeyEqual(), in ZoneUnorderedMap()
179 explicit ZoneUnorderedSet(Zone* zone, size_t bucket_count = 100) in ZoneUnorderedSet()
181 bucket_count, Hash(), KeyEqual(), ZoneAllocator<K>(zone)) {} in ZoneUnorderedSet()
/third_party/node/deps/histogram/include/hdr/
H A Dhdr_histogram.h27 int32_t bucket_count; member
488 int32_t bucket_count; member
/third_party/node/deps/histogram/src/
H A Dhdr_histogram.c383 cfg->bucket_count = buckets_needed_to_cover_value(highest_trackable_value, cfg->sub_bucket_count, (int32_t)cfg->unit_magnitude); in hdr_calculate_bucket_config()
384 cfg->counts_len = (cfg->bucket_count + 1) * (cfg->sub_bucket_count / 2); in hdr_calculate_bucket_config()
403 h->bucket_count = cfg->bucket_count; in hdr_init_preallocated()
1217 h->total_count, h->bucket_count, h->sub_bucket_count) < 0) in hdr_percentiles_print()
/third_party/rust/crates/aho-corasick/src/packed/teddy/
H A Druntime.rs333 bucket_count: usize, in verify64()
341 debug_assert!(bucket_count == 8 || bucket_count == 16); in verify64()
346 let at = at + (bit / bucket_count); in verify64()
347 let bucket = bit % bucket_count; in verify64()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dflat_hash_set.h395 // flat_hash_set::bucket_count()
400 using Base::bucket_count;
H A Dnode_hash_set.h385 // node_hash_set::bucket_count()
390 using Base::bucket_count;
H A Dflat_hash_map.h493 // flat_hash_map::bucket_count()
498 using Base::bucket_count;
H A Dnode_hash_map.h479 // node_hash_map::bucket_count()
482 using Base::bucket_count;
H A Dflat_hash_map_test.cc94 m.rehash(2 * m.bucket_count()); in TEST()
/third_party/node/deps/v8/src/objects/
H A Dmodule.cc461 const size_t bucket_count = 2; in IsGraphAsync() local
462 ZoneUnorderedSet<Module, Module::Hash> visited(&zone, bucket_count); in IsGraphAsync()
/third_party/ninja/src/
H A Dninja.cc1341 int buckets = (int)state_.paths_.bucket_count(); in DumpMetrics()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc3718 TNode<IntPtrT> bucket_count = Signed(WordShr(capacity, IntPtrConstant(1)));
3723 IntPtrConstant(CollectionType::HashTableStartIndex()), bucket_count);
3743 SmiFromIntPtr(bucket_count), barrier_mode);
3782 IntPtrAdd(buckets_start_address, TimesTaggedSize(bucket_count));

Completed in 33 milliseconds