HomeSort by: relevance | last modified time | path
    Searched refs:PrevUB (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtOpenMP.cpp 1283 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
1345 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
1618 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
1678 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
1802 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
1866 Dir->setPrevUpperBoundVariable(Exprs.PrevUB);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtOpenMP.h 771 Expr *PrevUB;
777 /// scheduling uses PrevLB and PrevUB (e.g. in 'distribute parallel for'
780 /// expression UB = min (UB, PrevUB)
836 PrevUB = nullptr;
1163 void setPrevUpperBoundVariable(Expr *PrevUB) {
1166 Data->getChildren()[PrevUpperBoundVariableOffset] = PrevUB;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 9114 ExprResult LB, UB, IL, ST, EUB, CombLB, CombUB, PrevLB, PrevUB, CombEUB;
9198 ImplicitParamDecl *PrevUBDecl = CD->getParam(/*PrevUB=*/3);
9204 PrevUB =
9360 // on PrevUB instead of NumIterations - used to implement 'for' when found
9378 // Build expression: UB = min(UB, prevUB) for #for in composite or combined
9382 SemaRef.BuildBinOp(CurScope, DistEUBLoc, BO_GT, UB.get(), PrevUB.get());
9384 DistEUBLoc, DistEUBLoc, IsUBGreater.get(), PrevUB.get(), UB.get());
9390 // Build IV <= PrevUB or IV < PrevUB + 1 for unsigned IV to be used in
9393 Expr *BoundPrevUB = PrevUB.get()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 2609 // UB = min(UB, PrevUB) for combined loop sharing constructs (e.g.
2886 LValue PrevUB = CGF.EmitLValue(LS.getPrevUpperBoundVariable());
2894 PrevUB, LS.getPrevUpperBoundVariable()->getExprLoc());
3217 // while (IV <= PrevUB) {

Completed in 52 milliseconds