Lines Matching refs:ThisRefCount
165 uint64_t &ThisRefCount = in resetRefCount() local
167 if (ThisRefCount != INFRefCount) in resetRefCount()
168 ThisRefCount = 1; in resetRefCount()
173 uint64_t &ThisRefCount = in incRefCount() local
175 if (ThisRefCount != INFRefCount) { in incRefCount()
176 ++ThisRefCount; in incRefCount()
177 assert(ThisRefCount < INFRefCount && "refcount overflow"); in incRefCount()
184 uint64_t &ThisRefCount = in decRefCount() local
189 if (ThisRefCount != INFRefCount) { in decRefCount()
190 if (ThisRefCount > 0) in decRefCount()
191 --ThisRefCount; in decRefCount()
214 uint64_t ThisRefCount = member
221 return ThisRefCount != INFRefCount;
222 return ThisRefCount == 1;