Searched defs:Cnt (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h162 iterator insert(iterator I, size_t Cnt, const_reference E, argument
165 if (End + Cnt <= Capacity) {
167 move_range_right(I, End, Cnt);
168 construct_range(I, I + Cnt, E);
169 End += Cnt;
170 return I + Cnt;
173 grow(C, size() + Cnt);
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp282 ProfileRegion(ID, Ex, Cnt, superRegion);
447 os << "alloca{" << (void*) Ex << ',' << Cnt << '}'; local
/external/clang/include/clang/Analysis/
H A DCFG.h282 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, argument
284 return Impl.insert(I, Cnt, E, C);
537 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, argument
539 return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h408 unsigned Cnt; // Block counter. Used to distinguish different pieces of member in class:clang::ento::AllocaRegion
413 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
426 unsigned Cnt, const MemRegion *superRegion);
1095 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp171 unsigned Cnt; member in class:__anon3456::RefVal
176 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
183 unsigned getCount() const { return Cnt; }
185 unsigned getCombinedCounts() const { return Cnt + ACnt; }
186 void clearCounts() { Cnt = 0; ACnt = 0; }
187 void setCount(unsigned i) { Cnt = i; }
221 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt;
246 ID.AddInteger(Cnt);
3448 unsigned Cnt local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7960 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
7972 Cnt = SplatBits.getSExtValue();
7980 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
7983 if (! getVShiftImm(Op, ElementBits, Cnt))
7985 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
7995 int64_t &Cnt) {
7998 if (! getVShiftImm(Op, ElementBits, Cnt))
8001 Cnt
7994 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
8036 int64_t Cnt; local
8141 int64_t Cnt; local
8193 int64_t Cnt; local
[all...]

Completed in 363 milliseconds