Home
last modified time | relevance | path

Searched refs:lowest_ever_allocated (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dplatform-cygwin.cc127 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
135 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
143 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-macos.cc117 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
125 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
133 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-freebsd.cc142 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
150 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
158 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-solaris.cc154 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
162 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
170 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-openbsd.cc160 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
168 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
176 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-linux.cc340 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
348 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
356 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-win32.cc826 static void* lowest_ever_allocated = reinterpret_cast<void*>(-1); variable
834 lowest_ever_allocated = Min(lowest_ever_allocated, address); in UpdateAllocatedSpaceLimits()
842 if (pointer < lowest_ever_allocated || pointer >= highest_ever_allocated) in IsOutsideAllocatedSpace()