Searched refs:expand_by (Results 1 - 25 of 25) 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 DadjoiningVirtualSpaces.cpp48 if (!_low->expand_by(init_low_byte_size)) {
54 if (!_high->expand_by(init_high_byte_size)) {
H A DpsVirtualspace.hpp88 virtual bool expand_by(size_t bytes);
135 virtual bool expand_by(size_t bytes);
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);
H A DpsPermGen.cpp100 expand_by(aligned_change_bytes);
H A DpsOldGen.hpp94 bool expand_by(size_t bytes);
H A DasPSYoungGen.cpp61 if (!_virtual_space->expand_by(_init_gen_size)) {
182 if (!virtual_space()->expand_by(change)) {
H A DparMarkBitMap.cpp69 if (_virtual_space != NULL && _virtual_space->expand_by(_reserved_byte_size)) {
H A DpsYoungGen.cpp47 if (!virtual_space()->expand_by(_init_gen_size)) {
307 if (!virtual_space()->expand_by(change)) {
H A DpsParallelCompact.cpp434 if (vspace->expand_by(_reserved_byte_size)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSeq.hpp135 MemRegion expand_by(HeapWord* old_end, HeapWord* new_end,
H A Dg1CardCounts.cpp126 if (!_card_counts_storage.expand_by(expand_size)) {
H A DheapRegionSeq.cpp97 MemRegion HeapRegionSeq::expand_by(HeapWord* old_end, function in class:HeapRegionSeq
H A Dg1BlockOffsetTable.cpp78 if (!_vs.expand_by(delta)) {
H A Dg1CollectedHeap.cpp1781 bool successful = _g1_storage.expand_by(aligned_expand_bytes);
1788 MemRegion mr = _hrs.expand_by(old_end, new_end, &expansion_list);
1791 // expand_by() was unable to allocate the HeapRegion instances
/openjdk7/hotspot/src/share/vm/memory/
H A Dheap.cpp151 bool CodeHeap::expand_by(size_t size) {
156 if (!_memory.expand_by(dm)) return false;
165 if (!_segmap.expand_by(ds)) return false;
H A Dheap.hpp130 bool expand_by(size_t size); // expands commited memory by size
H A DblockOffsetTable.cpp81 if (!_vs.expand_by(delta)) {
H A Dgeneration.cpp420 // The alignment caused the number of bytes to wrap. An expand_by(0) will
567 bool result = _virtual_space.expand_by(bytes);
H A DdefNewGeneration.cpp317 bool success = _virtual_space.expand_by(bytes);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvirtualspace.hpp237 bool expand_by(size_t bytes, bool pre_touch = false);
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.
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp180 if (!_heap->expand_by(CodeCacheExpansionSize)) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp3416 bool result = _virtual_space.expand_by(bytes);

Completed in 280 milliseconds