• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/

Lines Matching defs:upper

4006     // Intel task just returns the upper bound normally
4045 // Intel task just sets the upper bound normally
4051 kmp_uint32 *upper = RCAST(kmp_uint32 *, task->shareds) + 1;
4052 *upper = (kmp_uint32)ub;
4054 kmp_uint64 *upper = RCAST(kmp_uint64 *, task->shareds) + 1;
4055 *upper = (kmp_uint64)ub;
4070 // ub Pointer to loop upper bound in task structure
4072 // ub_glob Global upper bound (used for lastprivate check)
4094 kmp_uint64 upper = task_bounds.get_ub();
4106 gtid, num_tasks, grainsize, extras, lower, upper, ub_glob, st,
4118 upper = lower + st * chunk_minus_1;
4122 KMP_DEBUG_ASSERT(upper == *ub);
4123 if (upper == ub_glob)
4126 KMP_DEBUG_ASSERT((kmp_uint64)st > *ub - upper);
4127 if ((kmp_uint64)st > ub_glob - upper)
4130 KMP_DEBUG_ASSERT(upper + st < *ub);
4131 if (upper - ub_glob < (kmp_uint64)(-st))
4143 next_task_bounds.set_ub(upper + (st > 0 ? 1 : -1));
4145 next_task_bounds.set_ub(upper);
4152 "upper %lld stride %lld, (offsets %p %p)\n",
4153 gtid, i, next_task, lower, upper, st,
4162 lower = upper + st; // adjust lower bound for the next iteration
4251 // ub Pointer to loop upper bound in task structure
4253 // ub_glob Global upper bound (used for lastprivate check)
4315 // adjust lower bound (upper bound is not changed) for the 2nd half
4319 *ub = ub0; // adjust upper bound for the 1st half
4374 @param ub Pointer to loop upper bound in task structure
4402 kmp_uint64 upper = task_bounds.get_ub();
4403 kmp_uint64 ub_glob = upper; // global upper used to calc lastprivate flag
4411 gtid, taskdata, lower, upper, st, grainsize, sched, task_dup));
4415 tc = upper - lower + 1;
4417 tc = (lower - upper) / (-st) + 1;
4419 tc = (upper - lower) / st + 1;