HomeSort by relevance Sort by last modified time
    Searched defs:Cnt (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 436 unsigned Cnt; // Block counter. Used to distinguish different pieces of
440 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion)
441 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
454 unsigned Cnt, const MemRegion *superRegion);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 279 const Expr *Ex, unsigned cnt,
283 ID.AddInteger(cnt);
288 ProfileRegion(ID, Ex, Cnt, superRegion);
455 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}';
959 MemRegionManager::getAllocaRegion(const Expr *E, unsigned cnt,
963 return getSubRegion<AllocaRegion>(E, cnt, getStackLocalsRegion(STC));
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 177 unsigned Cnt;
181 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
182 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
189 unsigned getCount() const { return Cnt; }
191 unsigned getCombinedCounts() const { return Cnt + ACnt; }
192 void clearCounts() { Cnt = 0; ACnt = 0; }
193 void setCount(unsigned i) { Cnt = i; }
227 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt
268 unsigned cnt = getCount(); local
269 if (cnt) Out << " (+ " << cnt << ")"; local
275 unsigned cnt = getCount(); local
276 if (cnt) Out << " (+ " << cnt << ")"; local
282 unsigned cnt = getCount(); local
283 if (cnt) Out << " (+ " << cnt << ")"; local
289 unsigned cnt = getCount(); local
290 if (cnt) Out << " (+ " << cnt << ")"; local
3212 unsigned cnt = X.getCount(); local
3220 unsigned cnt = X.getCount(); local
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 163 milliseconds