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

/openjdk7/hotspot/src/share/vm/memory/
H A DcollectorPolicy.cpp421 size_t heap_size,
424 if ((*gen1_size_ptr + *gen0_size_ptr) > heap_size) {
425 if (((*gen0_size_ptr + OldSize) > heap_size) &&
426 (heap_size - min_gen0_size) >= min_alignment()) {
428 *gen0_size_ptr = heap_size - min_gen0_size;
435 *gen1_size_ptr = heap_size - *gen0_size_ptr;
419 adjust_gen0_sizes(size_t* gen0_size_ptr, size_t* gen1_size_ptr, size_t heap_size, size_t min_gen0_size) argument
H A DcollectorPolicy.hpp327 size_t heap_size, size_t min_gen1_size);
H A Duniverse.cpp819 // NarrowOopHeapBaseMin + heap_size < 4Gb
821 // NarrowOopHeapBaseMin + heap_size < 32Gb
829 char* Universe::preferred_heap_base(size_t heap_size, NARROW_OOP_MODE mode) { argument
836 const size_t total_size = heap_size + HeapBaseMinAddress;
845 base = (NarrowOopHeapMax - heap_size);
854 base = (OopEncodingHeapMax - heap_size);
864 if (base != 0 && (base + heap_size) <= OopEncodingHeapMax) {
H A Duniverse.hpp369 // NarrowOopHeapBaseMin + heap_size < 4Gb
371 // NarrowOopHeapBaseMin + heap_size < 32Gb
383 static char* preferred_heap_base(size_t heap_size, NARROW_OOP_MODE mode);
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.hpp190 int heap_size() const;
241 int heap_size() const;
H A DoopMap.cpp136 int OopMap::heap_size() const { function in class:OopMap
239 temp += map->heap_size();
272 int OopMapSet::heap_size() const { function in class:OopMapSet
281 size += at(i)->heap_size();
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Djhelper.d196 this->heap_size = SIZE_HeapWord *
201 this->heap_end = this->heap_start + this->heap_size;
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djhelper.d196 this->heap_size = SIZE_HeapWord *
201 this->heap_end = this->heap_start + this->heap_size;
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.cpp147 _oop_maps = (OopMapSet* )NEW_C_HEAP_ARRAY(unsigned char, p->heap_size(), mtCode);
H A DcodeCache.cpp952 map_size += set->heap_size();

Completed in 50 milliseconds