Searched defs:_stats (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp94 inline void record_push() { ++_stats[push]; }
95 inline void record_pop() { ++_stats[pop]; }
96 inline void record_pop_slow() { record_pop(); ++_stats[pop_slow]; }
102 inline size_t get(StatId id) const { return _stats[id]; }
103 inline const size_t* get() const { return _stats; }
116 size_t _stats[last_stat_id]; member in class:TaskQueueStats
121 ++_stats[steal_attempt];
122 if (success) ++_stats[steal];
126 ++_stats[overflow];
127 if (new_len > _stats[overflow_max_le
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp726 CMSStats _stats; member in class:CMSCollector
1000 CMSStats& stats() { return _stats; }

Completed in 38 milliseconds