/aosp_15_r20/external/rust/android-crates-io/crates/threadpool/src/ |
D | lib.rs | 281 pub fn build(self) -> ThreadPool { in build() 342 pub struct ThreadPool { struct 348 shared_data: Arc<ThreadPoolSharedData>, argument 351 impl ThreadPool { impl 367 pub fn new(num_threads: usize) -> ThreadPool { in new() 397 pub fn with_name(name: String, num_threads: usize) -> ThreadPool { in with_name() 407 pub fn new_with_name(name: String, num_threads: usize) -> ThreadPool { in new_with_name() 639 impl Clone for ThreadPool { implementation 676 fn clone(&self) -> ThreadPool { in clone() 687 impl Default for ThreadPool { implementation [all …]
|
/aosp_15_r20/tools/netsim/rust/daemon/src/http_server/ |
H A D | thread_pool.rs | 22 pub struct ThreadPool { struct 29 impl ThreadPool { impl 37 pub fn new(size: usize) -> ThreadPool { in new() 63 impl Drop for ThreadPool { implementation
|
/aosp_15_r20/external/rust/android-crates-io/crates/futures-executor/src/ |
D | thread_pool.rs | 31 pub struct ThreadPool { struct 50 impl AssertSendSync for ThreadPool {} argument 59 impl fmt::Debug for ThreadPool { implementation 79 impl ThreadPool { impl 136 impl Spawn for ThreadPool { implementation 171 impl Clone for ThreadPool { implementation 178 impl Drop for ThreadPool { implementation 269 pub fn create(&mut self) -> Result<ThreadPool, io::Error> { in create()
|
/aosp_15_r20/external/rust/android-crates-io/crates/rayon-core/src/thread_pool/ |
D | mod.rs | 51 pub struct ThreadPool { struct 55 impl ThreadPool { implementation 59 pub fn new(configuration: crate::Configuration) -> Result<ThreadPool, Box<dyn Error>> { in new() 65 ) -> Result<ThreadPool, ThreadPoolBuildError> in build() 405 impl Drop for ThreadPool { implementation 411 impl fmt::Debug for ThreadPool { implementation
|
D | test.rs | 282 fn nest<'scope, OP>(pools: &[ThreadPool], scopes: Vec<&Scope<'scope>>, op: OP) in nested_scopes() 319 fn nest<'scope, OP>(pools: &[ThreadPool], scopes: Vec<&ScopeFifo<'scope>>, op: OP) in nested_fifo_scopes()
|
/aosp_15_r20/external/llvm/lib/Support/ |
H A D | ThreadPool.cpp | 24 ThreadPool::ThreadPool() : ThreadPool(std::thread::hardware_concurrency()) {} in ThreadPool() function in ThreadPool 26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool 115 ThreadPool::ThreadPool() : ThreadPool(0) {} in ThreadPool() function in ThreadPool 118 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | ThreadPool.cpp | 24 ThreadPool::ThreadPool() : ThreadPool(hardware_concurrency()) {} in ThreadPool() function in ThreadPool 26 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool 111 ThreadPool::ThreadPool() : ThreadPool(0) {} in ThreadPool() function in ThreadPool 114 ThreadPool::ThreadPool(unsigned ThreadCount) in ThreadPool() function in ThreadPool
|
/aosp_15_r20/external/cronet/base/task/ |
H A D | thread_pool_unittest.cc | 20 TEST(ThreadPool, PostTaskAndReplyWithResultThreeArgs) { in TEST() argument 34 TEST(ThreadPool, PostTaskAndReplyWithResultFourArgs) { in TEST() argument 48 TEST(ThreadPool, BindPostTaskFizzlesOnShutdown) { in TEST() argument 73 TEST(ThreadPool, PostTaskAndReplyFizzlesOnShutdown) { in TEST() argument
|
/aosp_15_r20/external/toolchain-utils/toolchain_utils_githooks/ |
H A D | check-presubmit.py | 459 thread_pool: multiprocessing.pool.ThreadPool, 530 thread_pool: multiprocessing.pool.ThreadPool, 575 thread_pool: multiprocessing.pool.ThreadPool, 729 _thread_pool: multiprocessing.pool.ThreadPool, 760 _thread_pool: multiprocessing.pool.ThreadPool,
|
H A D | check-presubmit | 459 thread_pool: multiprocessing.pool.ThreadPool, 530 thread_pool: multiprocessing.pool.ThreadPool, 575 thread_pool: multiprocessing.pool.ThreadPool, 729 _thread_pool: multiprocessing.pool.ThreadPool, 760 _thread_pool: multiprocessing.pool.ThreadPool,
|
/aosp_15_r20/external/tensorflow/tensorflow/core/lib/core/ |
H A D | threadpool_test.cc | 34 TEST(ThreadPool, Empty) { in TEST() argument 41 TEST(ThreadPool, DoWork) { in TEST() argument 262 TEST(ThreadPool, ParallelFor) { in TEST() argument 288 TEST(ThreadPool, ParallelForWithAdaptiveSchedulingStrategy) { in TEST() argument 318 TEST(ThreadPool, ParallelForWithWorkerId) { in TEST() argument 356 TEST(ThreadPool, Parallelism) { in TEST() argument
|
/aosp_15_r20/external/zstd/contrib/pzstd/utils/test/ |
H A D | ThreadPoolTest.cpp | 19 TEST(ThreadPool, Ordering) { in TEST() argument 34 TEST(ThreadPool, AllJobsFinished) { in TEST() argument 55 TEST(ThreadPool, AddJobWhileJoining) { in TEST() argument
|
/aosp_15_r20/external/federated-compute/fcp/base/ |
H A D | scheduler_test.cc | 37 TEST(ThreadPool, TasksAreExecuted) { in TEST() argument 54 TEST(ThreadPool, ThreadsAreUtilized) { in TEST() argument 76 TEST(ThreadPool, StressTest) { in TEST() argument
|
/aosp_15_r20/external/tensorflow/tensorflow/core/platform/ |
H A D | threadpool.cc | 89 ThreadPool::ThreadPool(Env* env, const string& name, int num_threads) in ThreadPool() function in tensorflow::thread::ThreadPool 92 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() function in tensorflow::thread::ThreadPool 96 ThreadPool::ThreadPool(Env* env, const ThreadOptions& thread_options, in ThreadPool() function in tensorflow::thread::ThreadPool 108 ThreadPool::ThreadPool(thread::ThreadPoolInterface* user_threadpool) { in ThreadPool() function in tensorflow::thread::ThreadPool
|
/aosp_15_r20/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/ |
D | ThreadPool.java | 26 public class ThreadPool { class 83 public ThreadPool() { in ThreadPool() method in ThreadPool 87 public ThreadPool(int initPoolSize, int maxPoolSize) { in ThreadPool() method in ThreadPool
|
/aosp_15_r20/libcore/luni/src/test/java/tests/support/ |
H A D | ThreadPool.java | 22 public class ThreadPool extends ThreadGroup { class 32 public ThreadPool(int numThreads) { in ThreadPool() method in ThreadPool
|
/aosp_15_r20/hardware/google/aemu/base/include/aemu/base/threads/ |
D | ThreadPool.h | 90 ThreadPool(int threads, Fn&& processor) : mProcessor() { in ThreadPool() function 112 explicit ThreadPool(Processor&& processor) in ThreadPool() function
|
/aosp_15_r20/libcore/ojluni/src/main/java/sun/nio/ch/ |
H A D | ThreadPool.java | 37 public class ThreadPool { class 52 private ThreadPool(ExecutorService executor, in ThreadPool() method in ThreadPool
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
H A D | ThreadPool.cpp | 35 ThreadPool::ThreadPool(ThreadPoolStrategy S) in ThreadPool() function in ThreadPool 192 ThreadPool::ThreadPool(ThreadPoolStrategy S) : MaxThreadCount(1) { in ThreadPool() function in ThreadPool
|
/aosp_15_r20/external/pytorch/torch/csrc/lazy/core/ |
H A D | thread_pool.cpp | 19 class ThreadPool { class 21 explicit ThreadPool(size_t num_threads) { in ThreadPool() function in torch::lazy::__anon5bb5d7310111::ThreadPool
|
/aosp_15_r20/frameworks/av/services/audioflinger/afutils/ |
H A D | NBAIO_Tee.cpp | 161 class ThreadPool { class in android::AudioFileHandler 163 explicit ThreadPool(size_t size) in ThreadPool() function in android::AudioFileHandler::ThreadPool
|
/aosp_15_r20/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/ |
D | ThreadPool.java | 27 public class ThreadPool { class
|
/aosp_15_r20/external/ruy/ruy/ |
H A D | context.h | 27 class ThreadPool; variable
|
H A D | ctx.h | 27 class ThreadPool; variable
|
/aosp_15_r20/external/zstd/contrib/pzstd/utils/ |
H A D | ThreadPool.h | 27 explicit ThreadPool(std::size_t numThreads) { in ThreadPool() function
|