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

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3563 size_t bottom_overlap = base[i] + bytes - requested_addr; local
3564 if (bottom_overlap >= 0 && bottom_overlap < bytes) {
3565 unmap_memory(requested_addr, bottom_overlap);
3566 size[i] = bytes - bottom_overlap;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3484 size_t bottom_overlap = base[i] + bytes - requested_addr; local
3485 if (bottom_overlap >= 0 && bottom_overlap < bytes) {
3486 unmap_memory(requested_addr, bottom_overlap);
3487 size[i] = bytes - bottom_overlap;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp3280 size_t bottom_overlap = base[i] + bytes - requested_addr; local
3281 if (bottom_overlap >= 0 && bottom_overlap < bytes) {
3282 if (PrintMiscellaneous && Verbose && bottom_overlap == 0) {
3285 unmap_memory(requested_addr, bottom_overlap);
3286 size[i] = bytes - bottom_overlap;

Completed in 69 milliseconds