Lines Matching refs:ThisRefCount
179 uint64_t &ThisRefCount = in resetRefCount() local
181 if (ThisRefCount != INFRefCount) in resetRefCount()
182 ThisRefCount = 1; in resetRefCount()
187 uint64_t &ThisRefCount = in incRefCount() local
189 if (ThisRefCount != INFRefCount) { in incRefCount()
190 ++ThisRefCount; in incRefCount()
191 assert(ThisRefCount < INFRefCount && "refcount overflow"); in incRefCount()
198 uint64_t &ThisRefCount = in decRefCount() local
203 if (ThisRefCount != INFRefCount) { in decRefCount()
204 if (ThisRefCount > 0) in decRefCount()
205 --ThisRefCount; in decRefCount()
228 uint64_t ThisRefCount = member
235 return ThisRefCount != INFRefCount;
236 return ThisRefCount == 1;