Searched refs:Simdlen (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 749 Stmt *Simdlen = nullptr; variable 752 void setSimdlen(Expr *Len) { Simdlen = Len; } in setSimdlen() 763 LParenLoc(LParenLoc), Simdlen(Len) {} in OMPSimdlenClause() 777 Expr *getSimdlen() const { return cast_or_null<Expr>(Simdlen); } in getSimdlen() 779 child_range children() { return child_range(&Simdlen, &Simdlen + 1); } in children() 782 return const_child_range(&Simdlen, &Simdlen + 1); in children()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 795 ExprResult Simdlen; in ParseOMPDeclareSimdClauses() local 803 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds, in ParseOMPDeclareSimdClauses() 811 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears, in ParseOMPDeclareSimdClauses()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 6324 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen, in ActOnOpenMPDeclareSimdDirective() argument 6354 if (Simdlen) in ActOnOpenMPDeclareSimdDirective() 6355 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen); in ActOnOpenMPDeclareSimdDirective() 9585 const OMPSimdlenClause *Simdlen = nullptr; in checkSimdlenSafelenSpecified() local 9591 Simdlen = cast<OMPSimdlenClause>(Clause); in checkSimdlenSafelenSpecified() 9592 if (Safelen && Simdlen) in checkSimdlenSafelenSpecified() 9596 if (Simdlen && Safelen) { in checkSimdlenSafelenSpecified() 9597 const Expr *SimdlenLength = Simdlen->getSimdlen(); in checkSimdlenSafelenSpecified() 13928 ExprResult Simdlen = VerifyPositiveIntegerConstantInClause(Len, OMPC_simdlen); in ActOnOpenMPSimdlenClause() local 13929 if (Simdlen.isInvalid()) in ActOnOpenMPSimdlenClause() [all …]
|
| H A D | SemaTemplateInstantiateDecl.cpp | 325 ExprResult Simdlen; in instantiateOMPDeclareSimdDeclAttr() local 327 Simdlen = Subst(E); in instantiateOMPDeclareSimdDeclAttr() 365 S.ConvertDeclToDeclGroup(New), Attr.getBranchState(), Simdlen.get(), in instantiateOMPDeclareSimdDeclAttr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | Attr.td | 3580 ExprArgument<"Simdlen">, VariadicExprArgument<"Uniforms">,
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 10794 Expr *Simdlen, ArrayRef<Expr *> Uniforms, ArrayRef<Expr *> Aligneds,
|