Home | History | Annotate | Download | only in Scalar

Lines Matching refs:RefCount

1194     /// RefCount - The known minimum number of reference count increments.
1195 unsigned RefCount;
1208 PtrState() : RefCount(0), NestCount(0), Seq(S_None) {}
1211 if (RefCount == 0) RefCount = 1;
1215 if (RefCount != UINT_MAX) ++RefCount;
1219 if (RefCount != 0) --RefCount;
1223 return RefCount > 0;
1268 RefCount = std::min(RefCount, Other.RefCount);