Home
last modified time | relevance | path

Searched refs:Cnt (Results 1 – 25 of 34) sorted by relevance

12

/external/clang/tools/scan-build/libexec/
Dccc-analyzer534 my $Cnt = $CompileOptionMap{$ArgKey};
536 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
547 my $Cnt = $LinkerOptionMap{$ArgKey};
549 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
556 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
562 $i += $Cnt;
571 while ($Cnt > 0) {
572 ++$i; --$Cnt;
581 my $Cnt = $IgnoredOptionMap{$ArgKey};
582 while ($Cnt > 0) {
[all …]
/external/clang/include/clang/Analysis/Support/
DBumpVector.h167 iterator insert(iterator I, size_t Cnt, const_reference E, in insert() argument
170 if (End + Cnt <= Capacity) { in insert()
172 move_range_right(I, End, Cnt); in insert()
173 construct_range(I, I + Cnt, E); in insert()
174 End += Cnt; in insert()
175 return I + Cnt; in insert()
178 grow(C, size() + Cnt); in insert()
/external/llvm/test/tools/llvm-readobj/
Delf-versioninfo.test61 CHECK-NEXT: Cnt: 1
69 CHECK-NEXT: Cnt: 1
77 CHECK-NEXT: Cnt: 2
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp109 unsigned Cnt; member in __anonbe000e510111::RefVal
138 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)), in RefVal()
153 unsigned getCount() const { return Cnt; } in getCount()
155 unsigned getCombinedCounts() const { return Cnt + ACnt; } in getCombinedCounts()
157 Cnt = 0; in clearCounts()
161 Cnt = i; in setCount()
247 return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt && in hasSameState()
258 ID.AddInteger(Cnt); in Profile()
3747 unsigned Cnt = V.getCount(); in handleAutoreleaseCounts() local
3752 ++Cnt; in handleAutoreleaseCounts()
[all …]
/external/clang/lib/Sema/
DSemaOpenMP.cpp335 for (auto Cnt = Stack.size() - 1; Cnt > 0; --Cnt) { in getMapInfoForVar() local
336 if (Stack[Cnt].MappedDecls.count(VD)) { in getMapInfoForVar()
337 VarMI = Stack[Cnt].MappedDecls[VD]; in getMapInfoForVar()
2440 for (unsigned Cnt = 0, End = AllowedNameModifiers.size(); Cnt < End; in checkIfClauses() local
2441 ++Cnt) { in checkIfClauses()
2442 OpenMPDirectiveKind NM = AllowedNameModifiers[Cnt]; in checkIfClauses()
3672 for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) { in CheckOpenMPLoop() local
3673 if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA, Cnt, in CheckOpenMPLoop()
3676 IterSpaces[Cnt])) in CheckOpenMPLoop()
3744 for (unsigned Cnt = 1; Cnt < NestedLoopCount; ++Cnt) { in CheckOpenMPLoop() local
[all …]
DSemaStmtAsm.cpp375 for (unsigned Cnt = ConstraintIdx - NumOperands; I != E; ++I) in ActOnGCCAsmStmt() local
376 if (OutputConstraintInfos[I].isReadWrite() && Cnt-- == 0) { in ActOnGCCAsmStmt()
DSemaType.cpp2232 for (unsigned Idx = 0, Cnt = ParamTypes.size(); Idx < Cnt; ++Idx) { in BuildFunctionType() local
/external/clang/include/clang/Analysis/
DCFG.h367 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, in insert() argument
369 return Impl.insert(I, Cnt, E, C); in insert()
692 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, in beginAutomaticObjDtorsInsert() argument
694 return iterator(Elements.insert(I.base(), Cnt, in beginAutomaticObjDtorsInsert()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DMemRegion.h448 unsigned Cnt; // Block counter. Used to distinguish different pieces of
453 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {} in AllocaRegion()
466 unsigned Cnt, const MemRegion *superRegion);
1181 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp137 unsigned Cnt = CD->getContextParamPosition(); in GenerateOpenMPCapturedStmtFunction() local
143 setAddrOfLocalVar(I->getCapturedVar(), GetAddrOfLocalVar(Args[Cnt])); in GenerateOpenMPCapturedStmtFunction()
144 ++Cnt, ++I; in GenerateOpenMPCapturedStmtFunction()
149 MakeAddrLValue(GetAddrOfLocalVar(Args[Cnt]), Args[Cnt]->getType(), in GenerateOpenMPCapturedStmtFunction()
154 Args[Cnt]->getName(), ArgLVal), in GenerateOpenMPCapturedStmtFunction()
177 Args[Cnt]->getName(), ArgLVal, in GenerateOpenMPCapturedStmtFunction()
183 EmitLoadOfLValue(ArgLVal, Args[Cnt]->getLocation()).getScalarVal(); in GenerateOpenMPCapturedStmtFunction()
185 ++Cnt, ++I; in GenerateOpenMPCapturedStmtFunction()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp10090 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
10102 Cnt = SplatBits.getSExtValue(); in getVShiftImm()
10110 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { in isVShiftLImm() argument
10113 if (! getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
10115 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits); in isVShiftLImm()
10125 int64_t &Cnt) { in isVShiftRImm() argument
10128 if (! getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
10131 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits/2 : ElementBits)); in isVShiftRImm()
10132 if (Cnt >= -(isNarrow ? ElementBits/2 : ElementBits) && Cnt <= -1) { in isVShiftRImm()
10133 Cnt = -Cnt; in isVShiftRImm()
[all …]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp272 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) { in computeAllocationSizeForSections() local
/external/clang/include/clang/AST/
DStmtOpenMP.h650 for (unsigned Cnt = 1; Cnt < CollapsedNum; ++Cnt) { in getBody() local
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp6493 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument
6505 Cnt = SplatBits.getSExtValue(); in getVShiftImm()
6513 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { in isVShiftLImm() argument
6516 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm()
6518 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm()
6524 static bool isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, int64_t &Cnt) { in isVShiftRImm() argument
6527 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm()
6529 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm()
6536 int64_t Cnt; in LowerVectorSRA_SRL_SHL() local
6547 if (isVShiftLImm(Op.getOperand(1), VT, false, Cnt) && Cnt < EltSize) in LowerVectorSRA_SRL_SHL()
[all …]
/external/llvm/utils/TableGen/
DCodeGenSchedule.cpp1092 unsigned Cnt = std::count(ProcIndices.begin(), ProcIndices.end(), in getIntersectingVariants() local
1094 if (!Cnt) in getIntersectingVariants()
1096 if (Cnt > 1) { in getIntersectingVariants()
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp279 const ConstantFP *Cnt = MO.getFPImm(); in lowerOperand() local
280 APFloat Val = Cnt->getValueAPF(); in lowerOperand()
282 switch (Cnt->getType()->getTypeID()) { in lowerOperand()
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp288 ProfileRegion(ID, Ex, Cnt, superRegion); in Profile()
457 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}'; in dumpToStream()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1046 unsigned Cnt = I.second.second; in emitGlobalGOTEquivs() local
1047 if (Cnt) in emitGlobalGOTEquivs()
/external/clang/lib/AST/
DExpr.cpp4048 for (unsigned Cnt = 0; Cnt < ArraySectionCount; ++Cnt) { in getBaseOriginalType() local
/external/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp1270 TargetLowering::BooleanContent Cnt = in SimplifySetCC() local
1273 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, dl, in SimplifySetCC()
DSelectionDAG.cpp1926 TargetLowering::BooleanContent Cnt = in FoldSetCC() local
1929 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, dl, in FoldSetCC()
/external/elfutils/po/
Dde.po4796 msgid " %#06x: Version: %hu File: %s Cnt: %hu\n"
4797 msgstr " %#06x: Version: %hu Datei: %s Cnt: %hu\n"
4819 msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n"
Dzh_CN.po4270 msgid " %#06x: Version: %hu File: %s Cnt: %hu\n"
4293 msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n"
Dit.po4270 msgid " %#06x: Version: %hu File: %s Cnt: %hu\n"
4293 msgid " %#06x: Version: %hd Flags: %s Index: %hd Cnt: %hd Name: %s\n"
/external/vixl/src/vixl/a64/
Dmacro-assembler-a64.h2257 V(cnt, Cnt) \

12