Lines Matching defs:incr

36 gomp_loop_init (struct gomp_work_share *ws, long start, long end, long incr,
42 ws->end = ((incr > 0 && start > end) || (incr < 0 && start < end))
44 ws->incr = incr;
48 ws->chunk_size *= incr;
58 if (__builtin_expect (incr > 0, 1))
98 gomp_loop_static_start (long start, long end, long incr, long chunk_size,
106 gomp_loop_init (thr->ts.work_share, start, end, incr,
115 gomp_loop_dynamic_start (long start, long end, long incr, long chunk_size,
123 gomp_loop_init (thr->ts.work_share, start, end, incr,
140 gomp_loop_guided_start (long start, long end, long incr, long chunk_size,
148 gomp_loop_init (thr->ts.work_share, start, end, incr,
165 GOMP_loop_runtime_start (long start, long end, long incr,
172 return gomp_loop_static_start (start, end, incr, icv->run_sched_modifier,
175 return gomp_loop_dynamic_start (start, end, incr, icv->run_sched_modifier,
178 return gomp_loop_guided_start (start, end, incr, icv->run_sched_modifier,
183 return gomp_loop_static_start (start, end, incr, 0, istart, iend);
193 gomp_loop_ordered_static_start (long start, long end, long incr,
201 gomp_loop_init (thr->ts.work_share, start, end, incr,
211 gomp_loop_ordered_dynamic_start (long start, long end, long incr,
219 gomp_loop_init (thr->ts.work_share, start, end, incr,
236 gomp_loop_ordered_guided_start (long start, long end, long incr,
244 gomp_loop_init (thr->ts.work_share, start, end, incr,
261 GOMP_loop_ordered_runtime_start (long start, long end, long incr,
268 return gomp_loop_ordered_static_start (start, end, incr,
272 return gomp_loop_ordered_dynamic_start (start, end, incr,
276 return gomp_loop_ordered_guided_start (start, end, incr,
282 return gomp_loop_ordered_static_start (start, end, incr,
442 long incr, enum gomp_schedule_type sched,
449 gomp_loop_init (&team->work_shares[0], start, end, incr, sched, chunk_size);
456 long incr, long chunk_size)
458 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
465 long incr, long chunk_size)
467 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
474 long incr, long chunk_size)
476 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
483 long incr)
486 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
495 long incr, long chunk_size, unsigned flags)
497 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
506 long incr, long chunk_size, unsigned flags)
508 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
517 long incr, long chunk_size, unsigned flags)
519 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
528 long incr, unsigned flags)
531 gomp_parallel_loop_start (fn, data, num_threads, start, end, incr,
596 GOMP_loop_static_start (long start, long end, long incr, long chunk_size,
599 return gomp_loop_static_start (start, end, incr, chunk_size, istart, iend);
603 GOMP_loop_dynamic_start (long start, long end, long incr, long chunk_size,
606 return gomp_loop_dynamic_start (start, end, incr, chunk_size, istart, iend);
610 GOMP_loop_guided_start (long start, long end, long incr, long chunk_size,
613 return gomp_loop_guided_start (start, end, incr, chunk_size, istart, iend);
617 GOMP_loop_ordered_static_start (long start, long end, long incr,
620 return gomp_loop_ordered_static_start (start, end, incr, chunk_size,
625 GOMP_loop_ordered_dynamic_start (long start, long end, long incr,
628 return gomp_loop_ordered_dynamic_start (start, end, incr, chunk_size,
633 GOMP_loop_ordered_guided_start (long start, long end, long incr,
636 return gomp_loop_ordered_guided_start (start, end, incr, chunk_size,