Searched refs:m_chunks (Results 1 – 1 of 1) sorted by relevance
56 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { } in ChunkedTable()61 m_chunks = new Chunk(m_chunks); in add()62 m_current = m_chunks->m_entries; in add()65 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last)); in add()74 ASSERT(m_current > m_chunks->m_entries); in remove()78 if (m_current == m_chunks->m_entries) { in remove()79 Chunk* toDelete = m_chunks; in remove()80 m_chunks = toDelete->m_previous; in remove()81 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0; in remove()84 ASSERT(!m_chunks || ((m_chunks->m_entries < m_current) && (m_current <= m_last))); in remove()[all …]