| /netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/ |
| H A D | ccc-analyzer | 533 my $Cnt = $CompileOptionMap{$ArgKey}; 535 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; } 546 my $Cnt = $LinkerOptionMap{$ArgKey}; 548 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; } 555 my $Cnt = $CompilerLinkerOptionMap{$ArgKey}; 561 $i += $Cnt; 571 while ($Cnt > 0) { 572 ++$i; --$Cnt; 582 my $Cnt = $IgnoredOptionMap{$ArgKey}; 583 while ($Cnt > 0) { [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Support/ |
| H A D | BumpVector.h | 172 iterator insert(iterator I, size_t Cnt, const_reference E, in insert() argument 175 if (End + Cnt <= Capacity) { in insert() 177 move_range_right(I, End, Cnt); in insert() 178 construct_range(I, I + Cnt, E); in insert() 179 End += Cnt; in insert() 180 return I + Cnt; in insert() 183 grow(C, size() + Cnt); in insert()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 83 unsigned Cnt; 112 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)), in RefVal() 127 unsigned getCount() const { return Cnt; } in getCount() 129 unsigned getCombinedCounts() const { return Cnt + ACnt; } in getCombinedCounts() 131 Cnt = 0; in clearCounts() 135 Cnt = i; in setCount() 218 return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt && in hasSameState() 229 ID.AddInteger(Cnt); in Profile()
|
| H A D | RetainCountChecker.cpp | 1220 unsigned Cnt = V.getCount(); in handleAutoreleaseCounts() local 1225 ++Cnt; in handleAutoreleaseCounts() 1229 if (ACnt > Cnt && in handleAutoreleaseCounts() 1235 if (ACnt <= Cnt) { in handleAutoreleaseCounts() 1236 if (ACnt == Cnt) { in handleAutoreleaseCounts()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | TrigramIndex.cpp | 31 unsigned Cnt = 0; in insert() local 69 Cnt++; in insert() 76 if (!Cnt) { in insert() 82 Counts.push_back(Cnt); in insert()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| H A D | ArchitectureSet.cpp | 30 size_t Cnt = 0; in count() local 33 ++Cnt; in count() 34 return Cnt; in count()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| H A D | CFG.h | 593 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, in insert() argument 595 return Impl.insert(I, Cnt, E, C); in insert() 1169 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, in beginAutomaticObjDtorsInsert() argument 1171 return iterator(Elements.insert(I.base(), Cnt, in beginAutomaticObjDtorsInsert() 1182 iterator beginLifetimeEndsInsert(iterator I, size_t Cnt, in beginLifetimeEndsInsert() argument 1185 Elements.insert(I.base(), Cnt, CFGLifetimeEnds(nullptr, nullptr), C)); in beginLifetimeEndsInsert() 1195 iterator beginScopeEndInsert(iterator I, size_t Cnt, BumpVectorContext &C) { in beginScopeEndInsert() argument 1197 Elements.insert(I.base(), Cnt, CFGScopeEnd(nullptr, nullptr), C)); in beginScopeEndInsert()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGStmtOpenMP.cpp | 167 [&CGF](unsigned Cnt, const Stmt *CurStmt) { in emitPreInitStmt() argument 523 unsigned Cnt = CD->getContextParamPosition(); in emitOutlinedFunctionPrologue() local 528 if (!FO.UIntPtrCastRequired && Args[Cnt] != TargetArgs[Cnt]) { in emitOutlinedFunctionPrologue() 529 LocalAddr = CGM.getOpenMPRuntime().getParameterAddress(CGF, Args[Cnt], in emitOutlinedFunctionPrologue() 530 TargetArgs[Cnt]); in emitOutlinedFunctionPrologue() 532 LocalAddr = CGF.GetAddrOfLocalVar(Args[Cnt]); in emitOutlinedFunctionPrologue() 539 LocalAddrs.insert({Args[Cnt], {CurVD, LocalAddr}}); in emitOutlinedFunctionPrologue() 540 ++Cnt; in emitOutlinedFunctionPrologue() 545 LValue ArgLVal = CGF.MakeAddrLValue(LocalAddr, Args[Cnt]->getType(), in emitOutlinedFunctionPrologue() 551 Args[Cnt]->getName(), ArgLVal), in emitOutlinedFunctionPrologue() [all …]
|
| H A D | CGOpenMPRuntimeGPU.cpp | 2727 llvm::Value *Cnt = nullptr; in emitInterWarpCopyFunction() local 2741 Cnt = CGF.EmitLoadOfScalar(CntAddr, /*Volatile=*/false, C.IntTy, Loc); in emitInterWarpCopyFunction() 2743 Bld.CreateICmpULT(Cnt, llvm::ConstantInt::get(CGM.IntTy, NumIters)); in emitInterWarpCopyFunction() 2768 ElemPtr = Address(Bld.CreateGEP(ElemPtr.getPointer(), Cnt), in emitInterWarpCopyFunction() 2837 TargetElemPtr = Address(Bld.CreateGEP(TargetElemPtr.getPointer(), Cnt), in emitInterWarpCopyFunction() 2854 Cnt = Bld.CreateNSWAdd(Cnt, llvm::ConstantInt::get(CGM.IntTy, /*V=*/1)); in emitInterWarpCopyFunction() 2855 CGF.EmitStoreOfScalar(Cnt, CntAddr, /*Volatile=*/false, C.IntTy); in emitInterWarpCopyFunction() 3835 int Cnt = 0; in emitReduction() local 3837 PrivatesReductions[Cnt] = cast<DeclRefExpr>(DRE)->getDecl(); in emitReduction() 3838 ++Cnt; in emitReduction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64PostLegalizerLowering.cpp | 477 int64_t &Cnt) { in isVShiftRImm() argument 483 Cnt = *Cst; in isVShiftRImm() 485 return Cnt >= 1 && Cnt <= ElementBits; in isVShiftRImm()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | LoopAccessAnalysis.cpp | 1204 int Cnt = 1; in sortPtrAccesses() local 1214 auto Res = Offsets.emplace(Offset, Cnt); in sortPtrAccesses() 1219 ++Cnt; in sortPtrAccesses() 1225 Cnt = 0; in sortPtrAccesses() 1227 SortedIndices[Cnt] = Pair.second; in sortPtrAccesses() 1228 ++Cnt; in sortPtrAccesses()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 4622 void setLoopData(unsigned NumLoop, Expr *Cnt); 5659 OpenMPMapModifierKind getMapTypeModifier(unsigned Cnt) const LLVM_READONLY { in getMapTypeModifier() argument 5660 assert(Cnt < NumberOfOMPMapClauseModifiers && in getMapTypeModifier() 5662 return MapTypeModifiers[Cnt]; in getMapTypeModifier() 5669 SourceLocation getMapTypeModifierLoc(unsigned Cnt) const LLVM_READONLY { in getMapTypeModifierLoc() argument 5670 assert(Cnt < NumberOfOMPMapClauseModifiers && in getMapTypeModifierLoc() 5672 return MapTypeModifiersLoc[Cnt]; in getMapTypeModifierLoc() 6570 OpenMPMotionModifierKind getMotionModifier(unsigned Cnt) const LLVM_READONLY { in getMotionModifier() argument 6571 assert(Cnt < NumberOfOMPMotionModifiers && in getMotionModifier() 6573 return MotionModifiers[Cnt]; in getMotionModifier() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 422 for (int Cnt = 0, E = VL.size(); Cnt < E; Cnt++) { in getSameOpcode() local 423 unsigned InstOpcode = cast<Instruction>(VL[Cnt])->getOpcode(); in getSameOpcode() 424 if (IsBinOp && isa<BinaryOperator>(VL[Cnt])) { in getSameOpcode() 430 AltIndex = Cnt; in getSameOpcode() 433 } else if (IsCastOp && isa<CastInst>(VL[Cnt])) { in getSameOpcode() 435 Type *Ty1 = cast<Instruction>(VL[Cnt])->getOperand(0)->getType(); in getSameOpcode() 444 AltIndex = Cnt; in getSameOpcode() 1520 unsigned Cnt = 0; in print() local 1522 OS << "Operand " << Cnt++ << "\n"; in print() 6672 for (int Cnt = E; Cnt > 0; --Cnt) { in vectorizeStores() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | ELF.h | 43 unsigned Cnt; member 59 unsigned Cnt; member 931 VD.Cnt = D->vd_cnt; in getVersionDefinitions() 1003 VN.Cnt = Verneed->vn_cnt; in getVersionDependencies()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | MemRegion.h | 471 unsigned Cnt; variable 476 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) { in AllocaRegion() 481 unsigned Cnt, const MemRegion *superRegion); 1363 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
|
| /netbsd-src/sys/dev/usb/ |
| H A D | if_atu.c | 529 int Cnt; in atu_start_scan() local 538 for (Cnt=0; Cnt<6; Cnt++) in atu_start_scan() 539 Scan.BSSID[Cnt] = 0xff; in atu_start_scan()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 4948 for (unsigned Cnt = 0, End = AllowedNameModifiers.size(); Cnt < End; in checkIfClauses() local 4949 ++Cnt) { in checkIfClauses() 4950 OpenMPDirectiveKind NM = AllowedNameModifiers[Cnt]; in checkIfClauses() 5581 for (int Cnt = 0, EndCnt = Clauses.size(); Cnt < EndCnt; ++Cnt) { in processImplicitMapsWithDefaultMappers() local 5582 auto *C = dyn_cast<OMPMapClause>(Clauses[Cnt]); in processImplicitMapsWithDefaultMappers() 8428 Expr *Cnt = SemaRef.DefaultLvalueConversion(Counter).get(); in buildOrderedLoopData() local 8429 if (!Cnt) in buildOrderedLoopData() 8435 Cnt = SemaRef.BuildBinOp(S, Loc, BOK, Cnt, Inc).get(); in buildOrderedLoopData() 8436 if (!Cnt) in buildOrderedLoopData() 8445 ? Cnt in buildOrderedLoopData() [all …]
|
| H A D | SemaStmtAsm.cpp | 519 for (unsigned Cnt = ConstraintIdx - NumOperands; I != E; ++I) in ActOnGCCAsmStmt() local 520 if (OutputConstraintInfos[I].isReadWrite() && Cnt-- == 0) { in ActOnGCCAsmStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 129 for (unsigned Cnt = 0; Cnt < NumLoops; ++Cnt) { in doForAllLoops() local 134 if (Callback(Cnt, CurStmt)) in doForAllLoops() 159 [Callback](unsigned Cnt, Stmt *Loop) { in doForAllLoopsBodies() argument 170 Callback(Cnt, Loop, Body); in doForAllLoopsBodies()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | PPDirectives.cpp | 1645 int Cnt = 0; in trySimplifyPath() local 1652 ++Cnt; in trySimplifyPath() 1653 } else if (Cnt) { in trySimplifyPath() 1654 --Cnt; in trySimplifyPath()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 260 const ConstantFP *Cnt = MO.getFPImm(); in lowerOperand() local 261 const APFloat &Val = Cnt->getValueAPF(); in lowerOperand() 263 switch (Cnt->getType()->getTypeID()) { in lowerOperand()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyld.cpp | 460 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) { in computeAllocationSizeForSections() local
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/sancov/ |
| H A D | sancov.cpp | 619 uint32_t Cnt = Sec.size / Stride; in findMachOIndirectCovFunctions() local 621 for (uint32_t J = 0; J < Cnt && N + J < Dysymtab.nindirectsyms; J++) { in findMachOIndirectCovFunctions()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 6252 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { in getVShiftImm() argument 6265 Cnt = SplatBits.getSExtValue(); in getVShiftImm() 6273 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { in isVShiftLImm() argument 6276 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftLImm() 6278 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits); in isVShiftLImm() 6288 int64_t &Cnt) { in isVShiftRImm() argument 6291 if (!getVShiftImm(Op, ElementBits, Cnt)) in isVShiftRImm() 6294 return (Cnt >= 1 && Cnt <= (isNarrow ? ElementBits / 2 : ElementBits)); in isVShiftRImm() 6295 if (Cnt >= -(isNarrow ? ElementBits / 2 : ElementBits) && Cnt <= -1) { in isVShiftRImm() 6296 Cnt = -Cnt; in isVShiftRImm() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/ |
| H A D | libf7-asm.sx | 1094 #define Cnt CA 1126 mov Cnt, QBits 1171 dec Cnt
|