Home
last modified time | relevance | path

Searched refs:num_threads (Results 1 – 2 of 2) sorted by relevance

/build/kati/
Dthread_pool.cc29 explicit ThreadPoolImpl(int num_threads) in ThreadPoolImpl() argument
32 threads_.reserve(num_threads); in ThreadPoolImpl()
33 for (int i = 0; i < num_threads; i++) { in ThreadPoolImpl()
90 ThreadPool* NewThreadPool(int num_threads) { in NewThreadPool() argument
91 return new ThreadPoolImpl(num_threads); in NewThreadPool()
Dthread_pool.h33 ThreadPool* NewThreadPool(int num_threads);