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

/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h167 iterator insert(iterator I, size_t Cnt, const_reference E, argument
170 if (End + Cnt <= Capacity) {
172 move_range_right(I, End, Cnt);
173 construct_range(I, I + Cnt, E);
174 End += Cnt;
175 return I + Cnt;
178 grow(C, size() + Cnt);
/external/clang/include/clang/Analysis/
H A DCFG.h367 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, argument
369 return Impl.insert(I, Cnt, E, C);
692 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, argument
694 return iterator(Elements.insert(I.base(), Cnt,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h444 unsigned Cnt; // Block counter. Used to distinguish different pieces of member in class:clang::ento::AllocaRegion
449 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
462 unsigned Cnt, const MemRegion *superRegion);
1177 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/external/clang/lib/Lex/
H A DPPDirectives.cpp1648 int Cnt = 0; local
1655 ++Cnt;
1656 } else if (Cnt) {
1657 --Cnt;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp279 const ConstantFP *Cnt = MO.getFPImm(); local
280 const APFloat &Val = Cnt->getValueAPF();
282 switch (Cnt->getType()->getTypeID()) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1053 unsigned Cnt = I.second.second; local
1054 if (Cnt)
/external/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp261 unsigned Cnt = CD->getContextParamPosition(); local
267 setAddrOfLocalVar(I->getCapturedVar(), GetAddrOfLocalVar(Args[Cnt]));
268 ++Cnt;
274 MakeAddrLValue(GetAddrOfLocalVar(Args[Cnt]), Args[Cnt]->getType(),
279 Args[Cnt]->getName(), ArgLVal),
301 Args[Cnt]->getName(), ArgLVal,
307 EmitLoadOfLValue(ArgLVal, Args[Cnt]->getLocation()).getScalarVal();
309 ++Cnt;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp110 unsigned Cnt; member in class:__anon1703::RefVal
139 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)),
154 unsigned getCount() const { return Cnt; }
156 unsigned getCombinedCounts() const { return Cnt + ACnt; }
158 Cnt = 0;
162 Cnt = i;
248 return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt &&
259 ID.AddInteger(Cnt);
3740 unsigned Cnt local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1266 TargetLowering::BooleanContent Cnt = getBooleanContents(VT);
1267 switch (Cnt) {
1355 TargetLowering::BooleanContent Cnt = local
1358 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, dl,
H A DSelectionDAG.cpp1900 TargetLowering::BooleanContent Cnt = local
1903 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, dl,
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6584 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
6596 Cnt = SplatBits.getSExtValue();
6604 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
6607 if (!getVShiftImm(Op, ElementBits, Cnt))
6609 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
6615 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, int64_t &Cnt) { argument
6618 if (!getVShiftImm(Op, ElementBits, Cnt))
6620 return (Cnt >
6627 int64_t Cnt; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp7492 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
7504 Cnt = SplatBits.getSExtValue();
7512 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
7515 if (! getVShiftImm(Op, ElementBits, Cnt))
7517 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
7527 int64_t &Cnt) {
7530 if (! getVShiftImm(Op, ElementBits, Cnt))
7533 Cnt
7526 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
7568 int64_t Cnt; local
7673 int64_t Cnt; local
7713 int64_t Cnt; local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10500 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
10512 Cnt = SplatBits.getSExtValue();
10520 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
10523 if (! getVShiftImm(Op, ElementBits, Cnt))
10525 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
10535 int64_t &Cnt) {
10538 if (! getVShiftImm(Op, ElementBits, Cnt))
10541 return (Cnt >
10534 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
10577 int64_t Cnt; local
10666 int64_t Cnt; local
10719 int64_t Cnt; local
[all...]

Completed in 693 milliseconds