Searched refs:global_stats (Results 1 - 4 of 4) sorted by relevance

/art/compiler/utils/
H A Ddedupe_set-inl.h83 void UpdateStats(Thread* self, Stats* global_stats) REQUIRES(!lock_) {
91 global_stats->total_probe_distance += keys_.TotalProbeDistance();
92 global_stats->total_size += keys_.Size();
105 global_stats->collision_sum += number_of_entries - 1u;
106 global_stats->collision_max = std::max(global_stats->collision_max, number_of_entries);
/art/runtime/gc/
H A Dheap-inl.h168 RuntimeStats* global_stats = Runtime::Current()->GetStats(); local
169 ++global_stats->allocated_objects;
170 global_stats->allocated_bytes += bytes_allocated;
H A Dheap.cc1617 RuntimeStats* global_stats = Runtime::Current()->GetStats(); local
1618 global_stats->freed_objects += freed_objects;
1619 global_stats->freed_bytes += freed_bytes;
/art/runtime/
H A Dclass_linker.cc4831 RuntimeStats* global_stats = Runtime::Current()->GetStats(); local
4833 ++global_stats->class_init_count;
4835 global_stats->class_init_time_ns += (t1 - t0);

Completed in 591 milliseconds