Home
last modified time | relevance | path

Searched refs:SizeExprs (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp852 OpenACCClauseKind CK, llvm::SmallVectorImpl<Expr *> &SizeExprs) { in ParseOpenACCSizeExprList() argument
860 SizeExprs.push_back(SizeExpr.get()); in ParseOpenACCSizeExprList()
871 SizeExprs.push_back(SizeExpr.get()); in ParseOpenACCSizeExprList()
1163 llvm::SmallVector<Expr *> SizeExprs; in ParseOpenACCClauseParams() local
1164 if (ParseOpenACCSizeExprList(OpenACCClauseKind::Tile, SizeExprs)) { in ParseOpenACCClauseParams()
1169 ParsedClause.setIntExprDetails(std::move(SizeExprs)); in ParseOpenACCClauseParams()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenACCClause.h609 ArrayRef<Expr *> SizeExprs, SourceLocation EndLoc) in OpenACCTileClause() argument
612 setExprs(getTrailingObjects(SizeExprs.size()), SizeExprs); in OpenACCTileClause()
621 ArrayRef<Expr *> SizeExprs,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp310 ArrayRef<Expr *> SizeExprs, in Create() argument
313 C.Allocate(OpenACCTileClause::totalSizeToAlloc<Expr *>(SizeExprs.size())); in Create()
314 return new (Mem) OpenACCTileClause(BeginLoc, LParenLoc, SizeExprs, EndLoc); in Create()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenMP.h897 OMPClause *ActOnOpenMPSizesClause(ArrayRef<Expr *> SizeExprs,
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h6261 llvm::SmallVectorImpl<Expr *> &SizeExprs);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp12896 llvm::SmallVector<Expr *> SizeExprs; in readOpenACCClause() local
12898 SizeExprs.push_back(readSubExpr()); in readOpenACCClause()
12900 SizeExprs, EndLoc); in readOpenACCClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16517 OMPClause *SemaOpenMP::ActOnOpenMPSizesClause(ArrayRef<Expr *> SizeExprs, in ActOnOpenMPSizesClause() argument
16521 SmallVector<Expr *> SanitizedSizeExprs(SizeExprs); in ActOnOpenMPSizesClause()