Searched refs:Cnt (Results 1 - 12 of 12) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/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);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp100 unsigned Cnt; member in class:__anon3597::RefVal
105 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
112 unsigned getCount() const { return Cnt; }
114 unsigned getCombinedCounts() const { return Cnt + ACnt; }
115 void clearCounts() { Cnt = 0; ACnt = 0; }
116 void setCount(unsigned i) { Cnt = i; }
150 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt;
175 ID.AddInteger(Cnt);
3473 unsigned Cnt local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.h343 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, argument
345 return Impl.insert(I, Cnt, E, C);
602 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, argument
604 return iterator(Elements.insert(I.base(), Cnt, CFGAutomaticObjDtor(0, 0), C));
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3467 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
3479 Cnt = SplatBits.getSExtValue();
3486 static bool isVShiftLImm(SDValue Op, EVT VT, int64_t &Cnt) { argument
3489 if (!getVShiftImm(Op, ElementBits, Cnt))
3491 return (Cnt >= 0 && Cnt < ElementBits);
3497 static bool isVShiftRImm(SDValue Op, EVT VT, int64_t &Cnt) { argument
3500 if (!getVShiftImm(Op, ElementBits, Cnt))
3502 return (Cnt >= 1 && Cnt <
3520 int64_t Cnt; local
3561 int64_t Cnt; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h451 unsigned Cnt; // Block counter. Used to distinguish different pieces of member in class:clang::ento::AllocaRegion
456 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
469 unsigned Cnt, const MemRegion *superRegion);
1183 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9702 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
9714 Cnt = SplatBits.getSExtValue();
9722 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
9725 if (! getVShiftImm(Op, ElementBits, Cnt))
9727 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9737 int64_t &Cnt) {
9740 if (! getVShiftImm(Op, ElementBits, Cnt))
9743 Cnt
9736 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
9778 int64_t Cnt; local
9883 int64_t Cnt; local
9935 int64_t Cnt; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp288 ProfileRegion(ID, Ex, Cnt, superRegion);
457 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}'; local
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp355 const ConstantFP *Cnt = MO.getFPImm(); local
356 APFloat Val = Cnt->getValueAPF();
358 switch (Cnt->getType()->getTypeID()) {
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp1109 unsigned Cnt = std::count(ProcIndices.begin(), ProcIndices.end(),
1111 if (!Cnt)
1113 if (Cnt > 1) {
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1133 TargetLowering::BooleanContent Cnt = getBooleanContents(VT.isVector()); local
1135 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
H A DSelectionDAG.cpp1643 TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector()); local
1645 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp1721 for (unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) {

Completed in 331 milliseconds