Searched refs:MAX_GENERATIONS (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp32 // Maximum MAX_GENERATIONS generation data can be tracked.
33 #define MAX_GENERATIONS 512 macro
83 GenerationData _gen[MAX_GENERATIONS];
114 return (_tail >= _head ? (_tail - _head + 1) : (MAX_GENERATIONS - (_head - _tail) + 1));
H A DmemTrackWorker.cpp51 for(int index = 0; index < MAX_GENERATIONS; index ++) {
61 for (int index = 0; index < MAX_GENERATIONS; index ++) {
131 _head = (_head + 1) % MAX_GENERATIONS;
183 _tail = (_tail + 1) % MAX_GENERATIONS;
204 for (int index = 0; index < MAX_GENERATIONS; index ++) {
H A DmemTracker.cpp400 int per_gen_in_use = _worker_thread->generations_in_use() * 100 / MAX_GENERATIONS;

Completed in 31 milliseconds