Home | History | Annotate | Download | only in Sema

Lines Matching refs:Safelen

5430                                       const Expr *Safelen) {
5436 if (Safelen->isValueDependent() || Safelen->isTypeDependent() ||
5437 Safelen->isInstantiationDependent() ||
5438 Safelen->containsUnexpandedParameterPack())
5441 Safelen->EvaluateAsInt(SafelenRes, S.Context);
5443 // If both simdlen and safelen clauses are specified, the value of the simdlen
5444 // parameter must be less than or equal to the value of the safelen parameter.
5447 << Simdlen->getSourceRange() << Safelen->getSourceRange();
5485 // If both simdlen and safelen clauses are specified, the value of the simdlen
5486 // parameter must be less than or equal to the value of the safelen parameter.
5487 OMPSafelenClause *Safelen = nullptr;
5491 Safelen = cast<OMPSafelenClause>(Clause);
5494 if (Safelen && Simdlen)
5497 if (Simdlen && Safelen &&
5499 Safelen->getSafelen()))
5576 // If both simdlen and safelen clauses are specified, the value of the simdlen
5577 // parameter must be less than or equal to the value of the safelen parameter.
5578 OMPSafelenClause *Safelen = nullptr;
5582 Safelen = cast<OMPSafelenClause>(Clause);
5585 if (Safelen && Simdlen)
5588 if (Simdlen && Safelen &&
5590 Safelen->getSafelen()))
5835 // If both simdlen and safelen clauses are specified, the value of the simdlen
5836 // parameter must be less than or equal to the value of the safelen parameter.
5837 OMPSafelenClause *Safelen = nullptr;
5841 Safelen = cast<OMPSafelenClause>(Clause);
5844 if (Safelen && Simdlen)
5847 if (Simdlen && Safelen &&
5849 Safelen->getSafelen()))
7225 // If both simdlen and safelen clauses are specified, the value of the simdlen
7226 // parameter must be less than or equal to the value of the safelen parameter.
7227 OMPSafelenClause *Safelen = nullptr;
7231 Safelen = cast<OMPSafelenClause>(Clause);
7234 if (Safelen && Simdlen)
7237 if (Simdlen && Safelen &&
7239 Safelen->getSafelen()))
7493 // The parameter of the safelen clause must be a constant
7495 ExprResult Safelen = VerifyPositiveIntegerConstantInClause(Len, OMPC_safelen);
7496 if (Safelen.isInvalid())
7499 OMPSafelenClause(Safelen.get(), StartLoc, LParenLoc, EndLoc);