Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h547 enum class OpenACCReductionOperator : uint8_t { enum
572 OpenACCReductionOperator Op) { in printOpenACCReductionOperator()
574 case OpenACCReductionOperator::Addition: in printOpenACCReductionOperator()
576 case OpenACCReductionOperator::Multiplication: in printOpenACCReductionOperator()
578 case OpenACCReductionOperator::Max: in printOpenACCReductionOperator()
580 case OpenACCReductionOperator::Min: in printOpenACCReductionOperator()
582 case OpenACCReductionOperator::BitwiseAnd: in printOpenACCReductionOperator()
584 case OpenACCReductionOperator::BitwiseOr: in printOpenACCReductionOperator()
586 case OpenACCReductionOperator::BitwiseXOr: in printOpenACCReductionOperator()
588 case OpenACCReductionOperator::And: in printOpenACCReductionOperator()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp314 OpenACCReductionOperator ParseReductionOperator(Parser &P) { in ParseReductionOperator()
320 return OpenACCReductionOperator::Invalid; in ParseReductionOperator()
329 return OpenACCReductionOperator::Addition; in ParseReductionOperator()
331 return OpenACCReductionOperator::Multiplication; in ParseReductionOperator()
333 return OpenACCReductionOperator::BitwiseAnd; in ParseReductionOperator()
335 return OpenACCReductionOperator::BitwiseOr; in ParseReductionOperator()
337 return OpenACCReductionOperator::BitwiseXOr; in ParseReductionOperator()
339 return OpenACCReductionOperator::And; in ParseReductionOperator()
341 return OpenACCReductionOperator::Or; in ParseReductionOperator()
344 return OpenACCReductionOperator::Max; in ParseReductionOperator()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenACC.h318 OpenACCReductionOperator Op;
462 OpenACCReductionOperator getReductionOp() const { in getReductionOp()
710 void setReductionDetails(OpenACCReductionOperator Op, in setReductionDetails()
909 OpenACCReductionOperator ReductionOp,
949 OpenACCReductionOperator ReductionOp,
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenACCClause.h1202 OpenACCReductionOperator Op;
1205 OpenACCReductionOperator Operator, in OpenACCReductionClause()
1220 OpenACCReductionOperator Operator, ArrayRef<Expr *> VarList,
1223 OpenACCReductionOperator getReductionOp() const { return Op; } in getReductionOp()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACCClause.cpp1904 OpenACCReductionOperator ReductionOp, in CheckReductionVar()
2134 SourceLocation LParenLoc, OpenACCReductionOperator ReductionOp, in CheckReductionClause()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp502 OpenACCReductionOperator Operator, ArrayRef<Expr *> VarList, in Create()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp12869 OpenACCReductionOperator Op = readEnum<OpenACCReductionOperator>(); in readOpenACCClause()