Home
last modified time | relevance | path

Searched refs:CopyArrayElems (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DOpenMPClause.cpp771 ArrayRef<Expr *> CopyArrayElems) { in setInscanCopyArrayElems() argument
773 assert(CopyArrayElems.size() == varlist_size() && in setInscanCopyArrayElems()
776 llvm::copy(CopyArrayElems, getInscanCopyArrayTemps().end()); in setInscanCopyArrayElems()
787 ArrayRef<Expr *> CopyArrayElems, Stmt *PreInit, Expr *PostUpdate) { in Create() argument
803 Clause->setInscanCopyArrayElems(CopyArrayElems); in Create()
809 assert(CopyArrayElems.empty() && in Create()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp3543 SmallVector<const Expr *, 4> CopyArrayElems; in emitScanBasedDirectiveFinals() local
3552 CopyArrayElems.append(C->copy_array_elems().begin(), in emitScanBasedDirectiveFinals()
3560 for (unsigned I = 0, E = CopyArrayElems.size(); I < E; ++I) { in emitScanBasedDirectiveFinals()
3563 const Expr *CopyArrayElem = CopyArrayElems[I]; in emitScanBasedDirectiveFinals()
3609 SmallVector<const Expr *, 4> CopyArrayElems; in emitScanBasedDirective() local
3617 CopyArrayElems.append(C->copy_array_elems().begin(), in emitScanBasedDirective()
3675 for (const Expr *CopyArrayElem : CopyArrayElems) { in emitScanBasedDirective()
5310 SmallVector<const Expr *, 4> CopyArrayElems; in EmitOMPScanDirective() local
5322 CopyArrayElems.append(C->copy_array_elems().begin(), in EmitOMPScanDirective()
5436 const Expr *CopyArrayElem = CopyArrayElems[I]; in EmitOMPScanDirective()
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DOpenMPClause.h3187 void setInscanCopyArrayElems(ArrayRef<Expr *> CopyArrayElems);
3246 ArrayRef<Expr *> CopyArrayTemps, ArrayRef<Expr *> CopyArrayElems,