Searched refs:allocationEnd (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DBumpPointerAllocator.h47 void* allocationEnd = static_cast<char*>(m_current) + size; local
48 ASSERT(allocationEnd > m_current); // check for overflow
49 if (allocationEnd <= static_cast<void*>(this))
59 void* allocationEnd = static_cast<char*>(current) + size; local
60 ASSERT(allocationEnd > current); // check for overflow
61 ASSERT(allocationEnd <= static_cast<void*>(this));
62 m_current = allocationEnd;
163 void* allocationEnd = static_cast<char*>(current) + size; local
164 ASSERT(allocationEnd > current); // check for overflow
165 if (allocationEnd <
[all...]

Completed in 162 milliseconds