Home | History | Annotate | Download | only in wtf

Lines Matching refs:m_current

47         void* allocationEnd = static_cast<char*>(m_current) + size;
48 ASSERT(allocationEnd > m_current); // check for overflow
58 void* current = m_current;
62 m_current = allocationEnd;
82 ASSERT(position <= m_current);
83 m_current = position;
98 : m_current(allocation.base())
131 m_current = m_start;
148 ASSERT((static_cast<char*>(previousPool->m_current) + size) > previousPool->m_current); // check for overflow
149 ASSERT((static_cast<char*>(previousPool->m_current) + size) > static_cast<void*>(previousPool));
162 void* current = pool->m_current;
177 pool->m_current = pool->m_start;
185 ASSERT(position <= pool->m_current);
186 pool->m_current = position;
192 void* m_current;