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

/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp298 char* to_end = (char*)to()->end(); local
344 to_end = (char*)virtual_space()->high();
345 to_start = (char*)pointer_delta(to_end, (char*)requested_survivor_size,
374 to_end = to_start + requested_survivor_size;
377 // else leave to_end pointing to the high end of the virtual space.
380 guarantee(to_start != to_end, "to space is zero sized");
393 gclog_or_tty->print_cr(" [ to_start .. to_end): "
396 to_end,
397 pointer_delta( to_end, to_start, sizeof(char)));
407 to_end
624 char* to_end = (char*)to()->end(); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsYoungGen.cpp223 char* to_end = (char*)to_space()->end(); local
228 guarantee(to_start < to_end, "to space consistency");
235 guarantee(to_end <= virtual_space()->high(), "to end");
239 guarantee(to_end <= from_start, "to/from boundary");
491 char* to_end = (char*)to_space()->end(); local
539 to_end = (char*)virtual_space()->high();
540 to_start = (char*)pointer_delta(to_end, (char*)requested_survivor_size,
566 guarantee(to_start != to_end, "to space is zero sized");
579 gclog_or_tty->print_cr(" [ to_start .. to_end): "
582 to_end,
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp244 char *to_end = to_start + survivor_size; local
246 assert(to_end == _virtual_space.high(), "just checking");
253 MemRegion toMR ((HeapWord*)to_start, (HeapWord*)to_end);

Completed in 43 milliseconds