Searched refs:CalcStep (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp481 ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep,
484 // (Step and CalcStep), list of used expression + step.
501 Clause->setCalcStep(CalcStep);
510 // (Step and CalcStep), list of used expression + step.
477 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation LParenLoc, OpenMPLinearClauseKind Modifier, SourceLocation ModifierLoc, SourceLocation ColonLoc, SourceLocation EndLoc, ArrayRef<Expr *> VL, ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep, Stmt *PreInit, Expr *PostUpdate) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h3187 void setCalcStep(Expr *CalcStep) { *(getFinals().end() + 1) = CalcStep; } argument
3225 /// Finals[]; Step; CalcStep; }
3287 /// \param CalcStep Calculation of the linear step.
3296 ArrayRef<Expr *> PL, ArrayRef<Expr *> IL, Expr *Step, Expr *CalcStep,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp14482 ExprResult CalcStep =
14484 CalcStep = ActOnFinishFullExpr(CalcStep.get(), /*DiscardedValue*/ false);
14493 if (!IsConstant && CalcStep.isUsable()) {
14496 CalcStepExpr = CalcStep.get();
14515 Expr *CalcStep = Clause.getCalcStep();
14520 else if (CalcStep)
14521 Step = cast<BinaryOperator>(CalcStep)->getLHS();

Completed in 255 milliseconds