Home | History | Annotate | Download | only in testing

Lines Matching refs:threads

17 DEFINE_int32(threads, 4, "number of threads");
58 // Build the DFA simultaneously in a bunch of threads.
65 vector<BuildThread*> threads;
69 threads.push_back(t);
72 threads[j]->Start();
74 threads[j]->Join();
75 delete threads[j];
285 // Run the search simultaneously in a bunch of threads.
292 vector<SearchThread*> threads;
296 threads.push_back(t);
299 threads[j]->Start();
301 threads[j]->Join();
302 delete threads[j];