Searched refs:RHSExprs (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/AST/ |
D | OpenMPClause.cpp | 464 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() argument 466 RHSExprs.size() == varlist_size() && in setRHSExprs() 468 std::copy(RHSExprs.begin(), RHSExprs.end(), getLHSExprs().end()); in setRHSExprs() 483 ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps, Stmt *PreInit, in Create() argument 491 Clause->setRHSExprs(RHSExprs); in Create()
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 4225 ArrayRef<const Expr *> RHSExprs, in emitReductionFunction() argument 4261 auto RHSVar = cast<VarDecl>(cast<DeclRefExpr>(RHSExprs[I])->getDecl()); in emitReductionFunction() 4286 auto IRHS = RHSExprs.begin(); in emitReductionFunction() 4331 ArrayRef<const Expr *> RHSExprs, in emitReduction() argument 4377 auto IRHS = RHSExprs.begin(); in emitReduction() 4390 auto Size = RHSExprs.size(); in emitReduction() 4404 for (unsigned I = 0, E = RHSExprs.size(); I < E; ++I, ++IPriv, ++Idx) { in emitReduction() 4409 CGF.EmitLValue(RHSExprs[I]).getPointer(), CGF.VoidPtrTy), in emitReduction() 4429 LHSExprs, RHSExprs, ReductionOps); in emitReduction() 4445 CGF.Builder.getInt32(RHSExprs.size()), // i32 <n> in emitReduction() [all …]
|
D | CGOpenMPRuntime.h | 900 ArrayRef<const Expr *> RHSExprs,
|
D | CGStmtOpenMP.cpp | 1143 llvm::SmallVector<const Expr *, 8> RHSExprs; in EmitOMPReductionClauseFinal() local 1150 RHSExprs.append(C->rhs_exprs().begin(), C->rhs_exprs().end()); in EmitOMPReductionClauseFinal() 1157 *this, D.getLocEnd(), Privates, LHSExprs, RHSExprs, ReductionOps, in EmitOMPReductionClauseFinal()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1747 void setRHSExprs(ArrayRef<Expr *> RHSExprs); 1810 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs,
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 6915 Expr **RHSExprs) { in IsArithmeticBinaryExpr() argument 6925 *RHSExprs = OP->getRHS(); in IsArithmeticBinaryExpr() 6945 *RHSExprs = Call->getArg(1); in IsArithmeticBinaryExpr()
|