Lines Matching refs:m_count
193 : m_count(DE_NULL) in RefCount()
198 : m_count(count) in RefCount()
200 *m_count += 1; in RefCount()
204 : m_count(other.m_count) in RefCount()
206 if (m_count) in RefCount()
207 *m_count += 1; in RefCount()
212 if (m_count) in ~RefCount()
213 *m_count -= 1; in ~RefCount()
221 if (m_count) in operator =()
222 *m_count -= 1; in operator =()
224 m_count = other.m_count; in operator =()
226 if (m_count) in operator =()
227 *m_count += 1; in operator =()
233 int* m_count; member in de::__anon4738aa570111::RefCount