Searched defs:expand_by (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.cpp100 size_t expand_by = requested_blocks_size_in_bytes - current_blocks_size_in_bytes; local
101 if (!_virtual_space.expand_by(expand_by)) {
102 vm_exit_out_of_memory(expand_by, "object start array expansion");
105 memset(_blocks_region.end(), clean_block, expand_by);
H A DpsVirtualspace.cpp72 bool result = commit_size > 0 ? expand_by(commit_size) : true;
95 bool PSVirtualSpace::expand_by(size_t bytes) { function in class:PSVirtualSpace
146 if (expand_by(tmp_bytes)) {
264 bool PSVirtualSpaceHighToLow::expand_by(size_t bytes) { function in class:PSVirtualSpaceHighToLow
315 if (expand_by(tmp_bytes)) {
H A DpsOldGen.cpp68 if (!_virtual_space->expand_by(_init_gen_size)) {
233 // The alignment caused the number of bytes to wrap. An expand_by(0) will
244 success = expand_by(aligned_expand_bytes);
247 success = expand_by(aligned_bytes);
260 bool PSOldGen::expand_by(size_t bytes) { function in class:PSOldGen
264 return true; // That's what virtual_space()->expand_by(0) would return
266 bool result = virtual_space()->expand_by(bytes);
307 result = expand_by(remaining_bytes);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.cpp97 MemRegion HeapRegionSeq::expand_by(HeapWord* old_end, function in class:HeapRegionSeq
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.cpp608 if (!expand_by(committed_size)) {
665 have determined this, all expand_by and shrink_by calls must grow and
673 bool VirtualSpace::expand_by(size_t bytes, bool pre_touch) { function in class:VirtualSpace
709 // Determine which regions need to grow in this expand_by call.

Completed in 35 milliseconds