Lines Matching defs:OuterLoopArgs
3112 OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST,
3114 OuterLoopArgs.IncExpr = S.getInc();
3115 OuterLoopArgs.Init = S.getInit();
3116 OuterLoopArgs.Cond = S.getCond();
3117 OuterLoopArgs.NextLB = S.getNextLowerBound();
3118 OuterLoopArgs.NextUB = S.getNextUpperBound();
3119 OuterLoopArgs.DKind = LoopArgs.DKind;
3120 EmitOMPOuterLoop(DynamicOrOrdered, IsMonotonic, S, LoopScope, OuterLoopArgs,
3163 OMPLoopArguments OuterLoopArgs;
3164 OuterLoopArgs.LB = LoopArgs.LB;
3165 OuterLoopArgs.UB = LoopArgs.UB;
3166 OuterLoopArgs.ST = LoopArgs.ST;
3167 OuterLoopArgs.IL = LoopArgs.IL;
3168 OuterLoopArgs.Chunk = LoopArgs.Chunk;
3169 OuterLoopArgs.EUB = isOpenMPLoopBoundSharingDirective(EKind)
3172 OuterLoopArgs.IncExpr = IncExpr;
3173 OuterLoopArgs.Init = isOpenMPLoopBoundSharingDirective(EKind)
3176 OuterLoopArgs.Cond = isOpenMPLoopBoundSharingDirective(EKind)
3179 OuterLoopArgs.NextLB = isOpenMPLoopBoundSharingDirective(EKind)
3182 OuterLoopArgs.NextUB = isOpenMPLoopBoundSharingDirective(EKind)
3185 OuterLoopArgs.DKind = OMPD_distribute;
3188 LoopScope, OuterLoopArgs, CodeGenLoopContent,