Lines Matching defs:OuterLoopArgs
3057 OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST,
3059 OuterLoopArgs.IncExpr = S.getInc();
3060 OuterLoopArgs.Init = S.getInit();
3061 OuterLoopArgs.Cond = S.getCond();
3062 OuterLoopArgs.NextLB = S.getNextLowerBound();
3063 OuterLoopArgs.NextUB = S.getNextUpperBound();
3064 OuterLoopArgs.DKind = LoopArgs.DKind;
3065 EmitOMPOuterLoop(DynamicOrOrdered, IsMonotonic, S, LoopScope, OuterLoopArgs,
3107 OMPLoopArguments OuterLoopArgs;
3108 OuterLoopArgs.LB = LoopArgs.LB;
3109 OuterLoopArgs.UB = LoopArgs.UB;
3110 OuterLoopArgs.ST = LoopArgs.ST;
3111 OuterLoopArgs.IL = LoopArgs.IL;
3112 OuterLoopArgs.Chunk = LoopArgs.Chunk;
3113 OuterLoopArgs.EUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3116 OuterLoopArgs.IncExpr = IncExpr;
3117 OuterLoopArgs.Init = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3120 OuterLoopArgs.Cond = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3123 OuterLoopArgs.NextLB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3126 OuterLoopArgs.NextUB = isOpenMPLoopBoundSharingDirective(S.getDirectiveKind())
3129 OuterLoopArgs.DKind = OMPD_distribute;
3132 LoopScope, OuterLoopArgs, CodeGenLoopContent,