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

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3144 static address _highest_vm_reserved_address = NULL; variable
3170 // from multiple threads, because _highest_vm_reserved_address is just a
3172 if ((address)addr + bytes > _highest_vm_reserved_address) {
3173 _highest_vm_reserved_address = (address)addr + bytes;
3180 // Don't update _highest_vm_reserved_address, because there might be memory
3198 return _highest_vm_reserved_address;
3522 // automatically update _highest_vm_reserved_address if the call is
3527 // solve the problem, save current _highest_vm_reserved_address and
3529 address old_highest = _highest_vm_reserved_address;
3583 _highest_vm_reserved_address
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3072 static address _highest_vm_reserved_address = NULL; variable
3098 // from multiple threads, because _highest_vm_reserved_address is just a
3100 if ((address)addr + bytes > _highest_vm_reserved_address) {
3101 _highest_vm_reserved_address = (address)addr + bytes;
3108 // Don't update _highest_vm_reserved_address, because there might be memory
3126 return _highest_vm_reserved_address;
3443 // automatically update _highest_vm_reserved_address if the call is
3448 // solve the problem, save current _highest_vm_reserved_address and
3450 address old_highest = _highest_vm_reserved_address;
3504 _highest_vm_reserved_address
[all...]

Completed in 58 milliseconds