Searched refs:NumLoops (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp41 unsigned NumLoops; member in struct:__anon2596::LoopExtractor
44 : LoopPass(ID), NumLoops(numLoops) {
142 if (NumLoops == 0) return Changed;
143 --NumLoops;
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c738 for (i = 0; i < Info->NumLoops; i++)
936 UINT32 NumLoops; local
947 NumLoops = strtoul (NumLoopsArg, NULL, 0);
949 if (!NumThreads || !NumLoops)
952 NumThreads, NumLoops);
1018 AcpiGbl_DbMethodInfo.NumLoops = NumLoops;
1059 NumThreads, NumLoops);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp269 unsigned NumLoops,
273 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops));
275 new (Mem) OMPOrderedClause(Num, NumLoops, StartLoc, LParenLoc, EndLoc);
276 for (unsigned I = 0; I < NumLoops; ++I) {
284 unsigned NumLoops) {
285 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops));
286 auto *Clause = new (Mem) OMPOrderedClause(NumLoops);
287 for (unsigned I = 0; I < NumLoops; ++I) {
833 unsigned NumLoops) {
834 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(VL.size() + NumLoops));
268 Create(const ASTContext &C, Expr *Num, unsigned NumLoops, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc) argument
283 CreateEmpty(const ASTContext &C, unsigned NumLoops) argument
829 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, OpenMPDependClauseKind DepKind, SourceLocation DepLoc, SourceLocation ColonLoc, ArrayRef<Expr *> VL, unsigned NumLoops) argument
846 CreateEmpty(const ASTContext &C, unsigned N, unsigned NumLoops) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp441 const auto NumLoops = Loops.size(); variable
442 if (NumLoops > 1)
443 OS << " ; (mustexec in " << NumLoops << " loops: "; variable
H A DInlineCost.cpp551 int NumLoops = 0; variable
556 NumLoops++;
558 addCost(NumLoops * InlineConstants::CallPenalty);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1492 /// \param NumLoops Number of loops, associated with this clause.
1496 OMPOrderedClause(Expr *Num, unsigned NumLoops, SourceLocation StartLoc, argument
1499 NumForLoops(Num), NumberOfLoops(NumLoops) {}
1502 explicit OMPOrderedClause(unsigned NumLoops) argument
1504 NumberOfLoops(NumLoops) {}
1513 /// \param NumLoops Number of loops, associated with this clause.
1518 unsigned NumLoops, SourceLocation StartLoc,
1523 static OMPOrderedClause* CreateEmpty(const ASTContext &C, unsigned NumLoops);
3975 unsigned NumLoops = 0; member in class:clang::final
3983 /// \param NumLoops Numbe
3985 OMPDependClause(SourceLocation StartLoc, SourceLocation LParenLoc, SourceLocation EndLoc, unsigned N, unsigned NumLoops) argument
3995 OMPDependClause(unsigned N, unsigned NumLoops) argument
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h1529 UINT32 NumLoops; member in struct:acpi_db_method_info
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11642 unsigned NumLoops = Record.readInt();
11643 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops);

Completed in 331 milliseconds