reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_sched.cpp
  229   nth = team->t.t_nproc;
  230   if (nth == 1) {
  289     if (trip_count < nth) {
  303         UT small_chunk = trip_count / nth;
  304         UT extras = trip_count % nth;
  308           *plastiter = (tid == nth - 1);
  311             (trip_count / nth + ((trip_count % nth) ? 1 : 0)) * incr;
  311             (trip_count / nth + ((trip_count % nth) ? 1 : 0)) * incr;
  345     *pstride = span * nth;
  349       *plastiter = (tid == ((trip_count - 1) / (UT)chunk) % nth);
  355     UT span = (trip_count + nth - 1) / nth;
  355     UT span = (trip_count + nth - 1) / nth;
  387       cur_chunk = trip_count / nth + ((trip_count % nth) ? 1 : 0);
  387       cur_chunk = trip_count / nth + ((trip_count % nth) ? 1 : 0);