Lines Matching refs:my_num_threads
86 int my_num_threads; member
88 touches( int num_threads ) : my_num_threads(num_threads) { in touches()
89 my_last_touch = new T* [my_num_threads]; in touches()
90 my_touches = new bool* [my_num_threads]; in touches()
91 for ( int p = 0; p < my_num_threads; ++p) { in touches()
92 my_last_touch[p] = new T[my_num_threads]; in touches()
93 for ( int p2 = 0; p2 < my_num_threads; ++p2) in touches()
96 my_touches[p] = new bool[N*my_num_threads]; in touches()
97 for ( int n = 0; n < N*my_num_threads; ++n) in touches()
103 for ( int p = 0; p < my_num_threads; ++p) { in ~touches()
127 bool *all_touches = new bool[N*my_num_threads]; in validate_touches()
128 for ( int n = 0; n < N*my_num_threads; ++n) in validate_touches()
131 for ( int p = 0; p < my_num_threads; ++p) { in validate_touches()
132 for ( int n = 0; n < N*my_num_threads; ++n) { in validate_touches()
139 for ( int n = 0; n < N*my_num_threads; ++n) { in validate_touches()
141 printf("No touch at %d, my_num_threads = %d\n", n, my_num_threads); in validate_touches()