Searched refs:_hot_cache_size (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HotCardCache.cpp40 _hot_cache_size = (1 << G1ConcRSLogCacheSize);
41 _hot_cache = NEW_C_HEAP_ARRAY(jbyte*, _hot_cache_size, mtGC);
49 _hot_cache_par_chunk_size = MAX2(1, _hot_cache_size / n_workers);
74 if (_n_hot == _hot_cache_size) {
79 // Now _n_hot < _hot_cache_size, and we can insert at _hot_cache_idx.
83 if (_hot_cache_idx == _hot_cache_size) {
H A Dg1HotCardCache.hpp62 int _hot_cache_size; member in class:G1HotCardCache

Completed in 31 milliseconds