Lines Matching refs:parallel_for_each
2949 Back out some parallel_for_each features
2950 Now that the DWARF reader does not use parallel_for_each, we can
77453 parallel_for_each. This patch removes this code.
77455 Avoid submitting empty tasks in parallel_for_each
77456 I found that parallel_for_each would submit empty tasks to the thread
105621 …4: note: in instantiation of function template specialization 'gdb::parallel_for_each<__gnu_debug:…
105622 = gdb::parallel_for_each (1, per_bfd->all_comp_units.begin (),
108212 drop-in replacement for gdb::parallel_for_each, but there's nothing making
108215 Extend the unit test for gdb::parallel_for_each to test both.
108224 [gdb/symtab] Use task size in parallel_for_each in dwarf2_build_psymtabs_hard
108225 In dwarf2_build_psymtabs_hard, we use a parallel_for_each to distribute CUs
108298 [gdbsupport] Add task size parameter in parallel_for_each
108299 Add a task_size parameter to parallel_for_each, defaulting to nullptr, and use
111231 [gdb] Add empty range unit test for gdb::parallel_for_each
111232 Add a unit test that verifies that we can call gdb::parallel_for_each with an
112433 [gdbsupport] Improve thread scheduling in parallel_for_each
112434 When running a task using parallel_for_each, we get the following
112701 Add a sequential_for_each alongside the parallel_for_each, which can be used
112707 Tested on x86_64-linux, by using it instead of the parallel_for_each in
130502 Return vector of results from parallel_for_each
130503 This changes gdb::parallel_for_each to return a vector of the results.
130508 Add batching parameter to parallel_for_each
130509 parallel_for_each currently requires each thread to process at least
172768 Add some parallel_for_each tests
172770 caused a regression in parallel_for_each -- it started crashing in the
172774 He also pointed out that there were no tests of parallel_for_each.
172775 This adds a few tests of parallel_for_each, primarily testing that