Home | History | Annotate | Download | only in utils

Lines Matching defs:stats

41 struct DedupeSet<InKey, StoreKey, Alloc, HashType, HashFunc, kShard>::Stats {
83 void UpdateStats(Thread* self, Stats* global_stats) REQUIRES(!lock_) {
85 // for bookkeeping while collecting the stats.
86 std::unordered_map<HashType, size_t> stats;
94 auto it = stats.find(key.Hash());
95 if (it == stats.end()) {
96 stats.insert({key.Hash(), 1u});
102 for (const auto& entry : stats) {
238 Stats stats;
240 shards_[shard]->UpdateStats(self, &stats);
244 stats.collision_sum,
245 stats.collision_max,
246 stats.total_probe_distance,
247 stats.total_size,