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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DimmutableSpace.hpp55 size_t capacity_in_bytes() const { return capacity_in_words() * HeapWordSize; }
58 size_t capacity_in_words() const { return pointer_delta(end(), bottom()); } function in class:ImmutableSpace
59 virtual size_t capacity_in_words(Thread*) const { return capacity_in_words(); } function in class:ImmutableSpace
H A DmutableNUMASpace.hpp216 using MutableSpace::capacity_in_words;
217 virtual size_t capacity_in_words(Thread* thr) const;
H A DmutableNUMASpace.cpp208 size_t MutableNUMASpace::capacity_in_words(Thread* thr) const { function in class:MutableNUMASpace
213 return capacity_in_words() / lgrp_spaces()->length();
223 return lgrp_spaces()->at(i)->space()->capacity_in_words();
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.inline.hpp41 const size_t eden_size = young_gen()->eden_space()->capacity_in_words();
H A DpsOldGen.hpp150 size_t capacity_in_words() const { return object_space()->capacity_in_words(); } function in class:PSOldGen
H A DpsYoungGen.hpp144 size_t capacity_in_words() const;
H A DpsYoungGen.cpp753 size_t PSYoungGen::capacity_in_words() const {
754 return eden_space()->capacity_in_words()
755 + from_space()->capacity_in_words(); // to_space() is only used during scavenge
H A DpsMarkSweepDecorator.cpp105 allowed_deadspace = space()->capacity_in_words() * ratio / 100;
H A DpsParallelCompact.cpp1145 const size_t space_capacity = space->capacity_in_words();
1228 const size_t space_cap = space->capacity_in_words();
1448 const size_t space_capacity = space->capacity_in_words();
1560 HeapWord* t = b + space->capacity_in_words() / 2;
1849 id, space->capacity_in_words(), dense_prefix_end,
1917 const size_t old_capacity = old_space->capacity_in_words();
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp88 size_t capacity_in_words = capacity() / HeapWordSize; local
91 reserved_region().start(), reserved_region().start() + capacity_in_words, reserved_region().end());

Completed in 309 milliseconds