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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsVirtualspace.cpp131 PSVirtualSpace::expand_into(PSVirtualSpace* other_space, size_t bytes) { argument
134 assert(other_space->grows_down(), "other space must grow down");
135 assert(reserved_high_addr() == other_space->reserved_low_addr(),
137 assert(special() == other_space->special(), "one space is special, the other is not");
139 DEBUG_ONLY(PSVirtualSpaceVerifier other_verifier(other_space));
154 tmp_bytes = MIN2(other_space->uncommitted_size(), bytes_needed);
157 if (other_space->special() ||
160 other_space->set_reserved(other_space->reserved_low_addr() + tmp_bytes,
161 other_space
299 expand_into(PSVirtualSpace* other_space, size_t bytes) argument
[all...]

Completed in 32 milliseconds