Home
last modified time | relevance | path

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

/external/v8/src/
Dplatform-cygwin.cc128 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
136 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
137 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
143 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-solaris.cc155 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
163 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
164 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
170 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-freebsd.cc143 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
151 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
152 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
158 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-macos.cc118 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
126 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
127 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
133 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-openbsd.cc161 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
169 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
170 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
176 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-linux.cc341 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
349 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
350 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
356 return address < lowest_ever_allocated || address >= highest_ever_allocated; in IsOutsideAllocatedSpace()
Dplatform-win32.cc827 static void* highest_ever_allocated = reinterpret_cast<void*>(0); variable
835 highest_ever_allocated = in UpdateAllocatedSpaceLimits()
836 Max(highest_ever_allocated, in UpdateAllocatedSpaceLimits()
842 if (pointer < lowest_ever_allocated || pointer >= highest_ever_allocated) in IsOutsideAllocatedSpace()