Lines Matching refs:my_num_threads
59 int my_num_threads; member
61 …parallel_puts( tbb::flow::sequencer_node<T> &q, int num_threads ) : my_q(q), my_num_threads(num_th… in parallel_puts()
64 for (int j = tid; j < N; j+=my_num_threads) { in operator ()()
77 int my_num_threads; member
79 touches( int num_threads ) : my_num_threads(num_threads) { in touches()
80 my_last_touch = new T[my_num_threads]; in touches()
81 my_touches = new bool* [my_num_threads]; in touches()
82 for ( int p = 0; p < my_num_threads; ++p) { in touches()
91 for ( int p = 0; p < my_num_threads; ++p) { in ~touches()
117 for ( int p = 0; p < my_num_threads; ++p) { in validate_touches()
127 printf("No touch at %d, my_num_threads = %d\n", n, my_num_threads); in validate_touches()
140 int my_num_threads; member
143 …w::sequencer_node<T> &q, int num_threads, touches<T> &t ) : my_q(q), my_num_threads(num_threads), … in parallel_gets()
146 for (int j = tid; j < N; j+=my_num_threads) { in operator ()()
160 int my_num_threads; member
165 …std::atomic<int> &counter, touches<T> &t ) : my_s1(s1), my_s2(s2), my_num_threads(num_threads), my… in parallel_put_get()