Home | History | Annotate | Download | only in Scalar

Lines Matching full:refcount

1176     /// RefCount - The known minimum number of reference count increments.
1177 unsigned RefCount;
1187 PtrState() : RefCount(0), Seq(S_None) {}
1190 if (RefCount != UINT_MAX) ++RefCount;
1194 if (RefCount != 0) --RefCount;
1198 RefCount = 0;
1202 return RefCount > 0;
1235 RefCount = std::min(RefCount, Other.RefCount);