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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.hpp128 bool is_in_reserved(const void* p) const { function in class:PSOldGen
H A DpsYoungGen.hpp109 bool is_in_reserved(const void* p) const { function in class:PSYoungGen
H A DparallelScavengeHeap.cpp336 bool ParallelScavengeHeap::is_in_reserved(const void* p) const { function in class:ParallelScavengeHeap
337 if (young_gen()->is_in_reserved(p)) {
341 if (old_gen()->is_in_reserved(p)) {
345 if (perm_gen()->is_in_reserved(p)) {
360 assert(is_in_reserved(p) || p == NULL,
862 if (young_gen()->is_in_reserved(addr)) {
868 } else if (old_gen()->is_in_reserved(addr)) {
872 } else if (perm_gen()->is_in_reserved(addr)) {
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp254 bool is_in_reserved(const void* p) const { function in class:CollectedHeap
259 return p == NULL || is_in_reserved(p);
280 // implementation is to use "is_in_reserved". But this may not be too
285 // predicate, allowing more precise checking than "is_in_reserved" at
296 return is_in_reserved(p);
308 // value is_in_reserved() would return.
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.hpp231 bool is_in_reserved(const void* p) const { function in class:Generation
H A Dspace.hpp194 bool is_in_reserved(const void* p) const { return _bottom <= p && p < _end; } function in class:Space

Completed in 3333 milliseconds