Searched refs:Simdlen (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 3631 DeclGroupPtrTy DG, OMPDeclareSimdDeclAttr::BranchStateTy BS, Expr *Simdlen, 3659 if (Simdlen) 3660 SL = VerifyPositiveIntegerConstantInClause(Simdlen, OMPC_simdlen); 5429 static bool checkSimdlenSafelenValues(Sema &S, const Expr *Simdlen, 5432 if (Simdlen->isValueDependent() || Simdlen->isTypeDependent() || 5433 Simdlen->isInstantiationDependent() || 5434 Simdlen->containsUnexpandedParameterPack()) 5440 Simdlen->EvaluateAsInt(SimdlenRes, S.Context); 5446 S.Diag(Simdlen [all...] |
H A D | SemaTemplateInstantiateDecl.cpp | 265 ExprResult Simdlen; local 267 Simdlen = Subst(E); 305 S.ConvertDeclToDeclGroup(New), Attr.getBranchState(), Simdlen.get(),
|
/external/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 452 Stmt *Simdlen; member in class:clang::OMPSimdlenClause 455 void setSimdlen(Expr *Len) { Simdlen = Len; } 467 Simdlen(Len) {} 473 LParenLoc(SourceLocation()), Simdlen(nullptr) {} 481 Expr *getSimdlen() const { return cast_or_null<Expr>(Simdlen); } 487 child_range children() { return child_range(&Simdlen, &Simdlen + 1); }
|
/external/clang/lib/Parse/ |
H A D | ParseOpenMP.cpp | 504 ExprResult Simdlen; local 512 parseDeclareSimdClauses(*this, BS, Simdlen, Uniforms, Aligneds, 525 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears,
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 8245 Expr *Simdlen, ArrayRef<Expr *> Uniforms, ArrayRef<Expr *> Aligneds,
|
Completed in 268 milliseconds