Searched refs:m_chunks (Results 1 – 2 of 2) sorted by relevance
42 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { } in ChunkedTable()47 m_chunks = new Chunk(m_chunks); in add()48 m_current = m_chunks->m_entries; in add()51 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last)); in add()60 ASSERT(m_current > m_chunks->m_entries); in remove()64 if (m_current == m_chunks->m_entries) { in remove()65 Chunk* toDelete = m_chunks; in remove()66 m_chunks = toDelete->m_previous; in remove()67 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0; in remove()70 ASSERT(!m_chunks || ((m_chunks->m_entries < m_current) && (m_current <= m_last))); in remove()[all …]
146 m_chunks.append(adoptPtr(new Chunk(m_allocator.get(), m_currentChunkSize))); in allocateBase()147 m_current = m_chunks.last().get(); in allocateBase()207 Vector<OwnPtr<Chunk> > m_chunks; variable