HomeSort by: relevance | last modified time | path
    Searched defs:Threads (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
malloc_stress_transfer_test.cc 31 std::thread *Threads[kNumThreads];
32 for (auto &T : Threads) T = new std::thread(&Thread);
33 for (auto T : Threads) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ThreadPool.h 33 /// threads.
35 /// The pool keeps a vector of threads alive, waiting on a condition variable
43 /// execution resources (threads, cores, CPUs)
48 /// Blocking destructor: the pool will wait for all the threads to complete.
67 /// Blocking wait for all the threads to complete and the queue to be empty.
80 /// Threads in flight
81 std::vector<llvm::thread> Threads;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Parallel.cpp 45 // Spawn all but one of the threads in another thread as spawning threads
47 Threads.reserve(ThreadCount);
48 Threads.resize(1);
50 Threads[0] = std::thread([this, ThreadCount, S] {
52 Threads.emplace_back([=] { work(S, I); });
75 for (std::thread &T : Threads)
117 std::vector<std::thread> Threads;
124 // but does not wait for the threads to finish. The wait for worker thread
130 // destructor ensures it has been stopped and waits for worker threads t
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
LinkUtils.h 49 /// Number of threads.
50 unsigned Threads = 1;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_register.cc 170 instance.threads = num_threads;
207 // Add the number of threads used to the name
209 instance.name += StrFormat("/threads:%d", instance.threads);
428 Benchmark* Benchmark::Threads(int t) {
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark_register.cc 170 instance.threads = num_threads;
202 // Add the number of threads used to the name
204 instance.name += StrFormat("/threads:%d", instance.threads);
407 Benchmark* Benchmark::Threads(int t) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 289 /// Use specified number of threads for parallel files linking.
290 void setNumThreads(unsigned NumThreads) { Options.Threads = NumThreads; }
794 /// Number of threads.
795 unsigned Threads = 1;
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 1427 ACPI_THREAD_ID *Threads;
1440 * Arguments to be passed to method for the commands Threads and
1443 * For the Threads command, the Number of threads, ID of current

Completed in 29 milliseconds