Lines Matching refs:thread_number
1069 std::pair<vm_op, std::string> *op, uint32_t thread_number) in num2op() argument
1071 op->first = Mapping::ops[thread_number % Mapping::ops.size()].first; in num2op()
1072 op->second = Mapping::ops[thread_number % Mapping::ops.size()].second; in num2op()
1077 uint32_t thread_number, std::string thread_name) in print_thread_started() argument
1080 if (thread_number < allowed_prints) { in print_thread_started()
1082 } else if (thread_number == allowed_prints) { in print_thread_started()
1090 uint32_t thread_number) in start_thread() argument
1095 uint32_t thread_number_remainder = thread_number / Mapping::ops.size(); in start_thread()
1096 num2op(&operation, thread_number); in start_thread()
1103 print_thread_started(thread_number, thread_name); in start_thread()
1105 …return std::async(std::launch::async, [this, operation, thread_name, thread_number]() { /* lambda:… in start_thread()
1109 … bool running = this->run_op_on_all_mappings(&operation, thread_number % Mapping::ops.size()); in start_thread()