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

/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.cpp170 // ChunkPool implementation
174 class ChunkPool: public CHeapObj<mtInternal> { class in inherits:CHeapObj
181 static ChunkPool* _large_pool;
182 static ChunkPool* _medium_pool;
183 static ChunkPool* _small_pool;
196 // All chunks in a ChunkPool has the same size
197 ChunkPool(size_t size) : _size(size) { _first = NULL; _num_chunks = _num_used = 0; } function in class:ChunkPool
211 vm_exit_out_of_memory(bytes, "ChunkPool::allocate");
260 static ChunkPool* large_pool() { assert(_large_pool != NULL, "must be initialized"); return _large_pool; }
261 static ChunkPool* medium_poo
[all...]

Completed in 30 milliseconds