Home
last modified time | relevance | path

Searched refs:m_refcount (Results 1 – 3 of 3) sorted by relevance

/hardware/google/gfxstream/guest/iostream/include/gfxstream/guest/
DIOStream.h36 m_refcount = 1; in IOStream()
40 __atomic_add_fetch(&m_refcount, 1, __ATOMIC_SEQ_CST); in incRef()
44 if (0 == __atomic_sub_fetch(&m_refcount, 1, __ATOMIC_SEQ_CST)) { in decRef()
136 uint32_t m_refcount; variable
/hardware/google/gfxstream/guest/OpenglCodecCommon/include/gfxstream/guest/
DGLSharedGroup.h95 uint32_t m_refcount; variable
125 void incRef() { ++m_refcount; } in incRef()
127 --m_refcount; in decRef()
128 return 0 == m_refcount; in decRef()
/hardware/google/gfxstream/guest/OpenglCodecCommon/
DGLSharedGroup.cpp47 m_refcount = 1; in ProgramData()