Home | History | Annotate | Download | only in gold

Lines Matching defs:thread_count

196   int thread_count = options.thread_count_initial();
197 if (thread_count == 0)
198 thread_count = cmdline.number_of_input_files();
199 workqueue->set_thread_count(thread_count);
649 int thread_count = options.thread_count_middle();
650 if (thread_count == 0)
651 thread_count = std::max(2, input_objects->number_of_input_objects());
652 workqueue->set_thread_count(thread_count);
847 int thread_count = options.thread_count_final();
848 if (thread_count == 0)
849 thread_count = std::max(2, input_objects->number_of_input_objects());
850 workqueue->set_thread_count(thread_count);