Lines Matching refs:NumLoops
344 unsigned NumLoops, in Create() argument
348 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops)); in Create()
350 new (Mem) OMPOrderedClause(Num, NumLoops, StartLoc, LParenLoc, EndLoc); in Create()
351 for (unsigned I = 0; I < NumLoops; ++I) { in Create()
359 unsigned NumLoops) { in CreateEmpty() argument
360 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops)); in CreateEmpty()
361 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty()
362 for (unsigned I = 0; I < NumLoops; ++I) { in CreateEmpty()
1058 ArrayRef<Expr *> VL, unsigned NumLoops) { in Create() argument
1060 totalSizeToAlloc<Expr *>(VL.size() + /*depend-modifier*/ 1 + NumLoops), in Create()
1063 OMPDependClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops); in Create()
1070 for (unsigned I = 0 ; I < NumLoops; ++I) in Create()
1076 unsigned NumLoops) { in CreateEmpty() argument
1078 C.Allocate(totalSizeToAlloc<Expr *>(N + /*depend-modifier*/ 1 + NumLoops), in CreateEmpty()
1080 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty()
1086 NumLoop < NumLoops && in setLoopData()
1096 NumLoop < NumLoops && in getLoopData()
1106 NumLoop < NumLoops && in getLoopData()
1683 ArrayRef<Expr *> VL, unsigned NumLoops) { in Create() argument
1684 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(VL.size() + NumLoops), in Create()
1687 OMPDoacrossClause(StartLoc, LParenLoc, EndLoc, VL.size(), NumLoops); in Create()
1692 for (unsigned I = 0; I < NumLoops; ++I) in Create()
1699 unsigned NumLoops) { in CreateEmpty() argument
1700 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(N + NumLoops), in CreateEmpty()
1702 return new (Mem) OMPDoacrossClause(N, NumLoops); in CreateEmpty()
1706 assert(NumLoop < NumLoops && "Loop index must be less number of loops."); in setLoopData()
1712 assert(NumLoop < NumLoops && "Loop index must be less number of loops."); in getLoopData()
1718 assert(NumLoop < NumLoops && "Loop index must be less number of loops."); in getLoopData()