Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Cnt

179   unsigned Cnt;
183 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
184 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
191 unsigned getCount() const { return Cnt; }
193 unsigned getCombinedCounts() const { return Cnt + ACnt; }
194 void clearCounts() { Cnt = 0; ACnt = 0; }
195 void setCount(unsigned i) { Cnt = i; }
229 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt;
254 ID.AddInteger(Cnt);
270 unsigned cnt = getCount();
271 if (cnt) Out << " (+ " << cnt << ")";
277 unsigned cnt = getCount();
278 if (cnt) Out << " (+ " << cnt << ")";
284 unsigned cnt = getCount();
285 if (cnt) Out << " (+ " << cnt << ")";
291 unsigned cnt = getCount();
292 if (cnt) Out << " (+ " << cnt << ")";
3274 unsigned cnt = X.getCount();
3275 assert(cnt > 0);
3276 X.setCount(cnt - 1);
3282 unsigned cnt = X.getCount();
3283 if (cnt) {
3284 X.setCount(cnt - 1);
3538 unsigned Cnt = V.getCount();
3543 ++Cnt;
3545 if (ACnt <= Cnt) {
3546 if (ACnt == Cnt) {