Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h495 enum class OpenACCReductionOperator { enum
520 OpenACCReductionOperator Op) { in printOpenACCReductionOperator()
522 case OpenACCReductionOperator::Addition: in printOpenACCReductionOperator()
524 case OpenACCReductionOperator::Multiplication: in printOpenACCReductionOperator()
526 case OpenACCReductionOperator::Max: in printOpenACCReductionOperator()
528 case OpenACCReductionOperator::Min: in printOpenACCReductionOperator()
530 case OpenACCReductionOperator::BitwiseAnd: in printOpenACCReductionOperator()
532 case OpenACCReductionOperator::BitwiseOr: in printOpenACCReductionOperator()
534 case OpenACCReductionOperator::BitwiseXOr: in printOpenACCReductionOperator()
536 case OpenACCReductionOperator::And: in printOpenACCReductionOperator()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp309 OpenACCReductionOperator ParseReductionOperator(Parser &P) { in ParseReductionOperator()
315 return OpenACCReductionOperator::Invalid; in ParseReductionOperator()
324 return OpenACCReductionOperator::Addition; in ParseReductionOperator()
326 return OpenACCReductionOperator::Multiplication; in ParseReductionOperator()
328 return OpenACCReductionOperator::BitwiseAnd; in ParseReductionOperator()
330 return OpenACCReductionOperator::BitwiseOr; in ParseReductionOperator()
332 return OpenACCReductionOperator::BitwiseXOr; in ParseReductionOperator()
334 return OpenACCReductionOperator::And; in ParseReductionOperator()
336 return OpenACCReductionOperator::Or; in ParseReductionOperator()
339 return OpenACCReductionOperator::Max; in ParseReductionOperator()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenACC.h80 OpenACCReductionOperator Op;
188 OpenACCReductionOperator getReductionOp() const { in getReductionOp()
361 void setReductionDetails(OpenACCReductionOperator Op, in setReductionDetails()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenACCClause.h826 OpenACCReductionOperator Op;
829 OpenACCReductionOperator Operator, in OpenACCReductionClause()
846 OpenACCReductionOperator Operator, ArrayRef<Expr *> VarList,
849 OpenACCReductionOperator getReductionOp() const { return Op; } in getReductionOp()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp315 OpenACCReductionOperator Operator, ArrayRef<Expr *> VarList, in Create()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp12031 OpenACCReductionOperator Op = readEnum<OpenACCReductionOperator>(); in readOpenACCClause()