Searched refs:RHSExprs (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 1635 ArrayRef<const Expr *> RHSExprs, in emitReductionFunction() argument 1674 cast<VarDecl>(cast<DeclRefExpr>(RHSExprs[I])->getDecl()), in emitReductionFunction() 1680 CGF.ConvertTypeForMem(C.getPointerType(RHSExprs[I]->getType()))); in emitReductionFunction() 1703 ArrayRef<const Expr *> RHSExprs, in emitReduction() argument 1739 llvm::APInt ArraySize(/*unsigned int numBits=*/32, RHSExprs.size()); in emitReduction() 1745 for (unsigned I = 0, E = RHSExprs.size(); I < E; ++I) { in emitReduction() 1749 CGF.EmitLValue(RHSExprs[I]).getAddress(), CGF.VoidPtrTy), in emitReduction() 1756 RHSExprs, ReductionOps); in emitReduction() 1774 CGF.Builder.getInt32(RHSExprs.size()), // i32 <n> in emitReduction()
|
D | CGOpenMPRuntime.h | 574 ArrayRef<const Expr *> RHSExprs,
|
D | CGStmtOpenMP.cpp | 457 llvm::SmallVector<const Expr *, 8> RHSExprs; in EmitOMPReductionClauseFinal() local 469 RHSExprs.append(C->rhs_exprs().begin(), C->rhs_exprs().end()); in EmitOMPReductionClauseFinal() 476 *this, D.getLocEnd(), LHSExprs, RHSExprs, ReductionOps, in EmitOMPReductionClauseFinal()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1521 void OMPReductionClause::setRHSExprs(ArrayRef<Expr *> RHSExprs) { in setRHSExprs() argument 1523 RHSExprs.size() == varlist_size() && in setRHSExprs() 1525 std::copy(RHSExprs.begin(), RHSExprs.end(), getLHSExprs().end()); in setRHSExprs() 1539 ArrayRef<Expr *> LHSExprs, ArrayRef<Expr *> RHSExprs, in Create() argument 1548 Clause->setRHSExprs(RHSExprs); in Create()
|
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 1447 void setRHSExprs(ArrayRef<Expr *> RHSExprs); 1504 ArrayRef<Expr *> RHSExprs, ArrayRef<Expr *> ReductionOps);
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 6358 Expr **RHSExprs) { in IsArithmeticBinaryExpr() argument 6368 *RHSExprs = OP->getRHS(); in IsArithmeticBinaryExpr() 6388 *RHSExprs = Call->getArg(1); in IsArithmeticBinaryExpr()
|