Home | History | Annotate | Download | only in Sema

Lines Matching refs:ChunkSize

6046     OpenMPScheduleClauseKind Kind, Expr *ChunkSize, SourceLocation StartLoc,
6071 Expr *ValExpr = ChunkSize;
6073 if (ChunkSize) {
6074 if (!ChunkSize->isValueDependent() && !ChunkSize->isTypeDependent() &&
6075 !ChunkSize->isInstantiationDependent() &&
6076 !ChunkSize->containsUnexpandedParameterPack()) {
6077 SourceLocation ChunkSizeLoc = ChunkSize->getLocStart();
6079 PerformOpenMPImplicitIntegerConversion(ChunkSizeLoc, ChunkSize);
6092 << "schedule" << 1 << ChunkSize->getSourceRange();
6096 auto *ImpVar = buildVarDecl(*this, ChunkSize->getExprLoc(),
6097 ChunkSize->getType(), ".chunk.");
6098 auto *ImpVarRef = buildDeclRefExpr(*this, ImpVar, ChunkSize->getType(),
6099 ChunkSize->getExprLoc(),