• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/

Lines Matching refs:NumIterations

2320                                      Expr *NumIterations, Sema &SemaRef,
5621 Expr *NumIterations = nullptr;
7014 ResultIterSpaces[CurrentNestedLoopCount].NumIterations =
7048 ResultIterSpaces[CurrentNestedLoopCount].NumIterations == nullptr ||
7059 ResultIterSpaces[CurrentNestedLoopCount].NumIterations);
7384 // Note: decltype(NumIterations) must be integer type (in 'omp for', only i32
7387 // #define NumIterations (NI * ((NJ - J0 - 1 + 2) / 2))
7388 // for (int[32|64]_t IV = 0; IV < NumIterations; ++IV ) {
7403 Expr *N0 = IterSpaces[0].NumIterations;
7434 Expr *N = IterSpaces[Cnt].NumIterations;
7480 ExprResult NumIterations = LastIteration;
7502 NumIterations = SemaRef.BuildBinOp(
7505 if (!NumIterations.isUsable())
7639 // Loop condition (IV < NumIterations) or (IV <= UB or IV < UB + 1 (for
7659 NumIterations.get());
7663 NumIterations.get());
7754 // on PrevUB instead of NumIterations - used to implement 'for' when found
7840 IterSpaces[K].NumIterations);
7890 IS.CounterInit, IS.NumIterations, IS.CounterStep,
7926 Built.NumIterations = NumIterations.get();
8045 B.NumIterations, *this, CurScope,
8084 B.NumIterations, *this, CurScope,
8120 B.NumIterations, *this, CurScope,
8322 B.NumIterations, *this, CurScope,
8363 B.NumIterations, *this, CurScope,
9387 B.NumIterations, *this, CurScope,
9709 B.NumIterations, *this, CurScope,
9794 B.NumIterations, *this, CurScope,
9917 B.NumIterations, *this, CurScope,
10053 B.NumIterations, *this, CurScope,
10109 B.NumIterations, *this, CurScope,
10165 B.NumIterations, *this, CurScope,
10220 B.NumIterations, *this, CurScope,
10324 B.NumIterations, *this, CurScope,
10386 B.NumIterations, *this, CurScope,
10569 B.NumIterations, *this, CurScope,
10626 B.NumIterations, *this, CurScope,
10683 B.NumIterations, *this, CurScope,
14508 Expr *NumIterations, Sema &SemaRef,
14575 // Build final: Var = InitExpr + NumIterations * Step
14580 InitExpr, NumIterations, Step, /*Subtract=*/false,