/frameworks/base/tools/aapt/ |
WorkQueue.h | 22 #include <utils/threads.h> 30 * units in parallel, using up to the specified number of threads. 49 /* Creates a work queue with the specified maximum number of work threads. */ 53 * Cancels pending work and waits for all remaining threads to complete. 64 * 'backlog' times the number of threads. This condition reduces the rate of entry into 66 * work threads can actually handle.
|
/frameworks/native/include/gui/ |
BufferItemConsumer.h | 26 #include <utils/threads.h>
|
/frameworks/native/libs/input/tests/ |
TestHelpers.h | 22 #include <utils/threads.h>
|
/frameworks/rs/ |
rsGrallocConsumer.h | 26 #include <utils/threads.h>
|
/hardware/qcom/display/msm8996/libqdutils/ |
qd_utils.h | 33 #include <utils/threads.h>
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-16/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/asm/ |
pgalloc_32.h | 21 #include <linux/threads.h>
|
/system/core/include/utils/ |
Singleton.h | 22 #include <utils/threads.h>
|
/system/core/libutils/tests/ |
TestHelpers.h | 20 #include <utils/threads.h>
|
/external/lzma/C/ |
MtCoder.c | 187 #define GET_NEXT_THREAD(p) &p->mtCoder->threads[p->index == p->mtCoder->numThreads - 1 ? 0 : p->index + 1]
257 CMtThread *t = &p->threads[i];
269 CMtThread_Destruct(&p->threads[i]);
284 RINOK(CMtThread_Prepare(&p->threads[i]));
289 CMtThread *t = &p->threads[i];
310 CMtThread *t = &p->threads[i];
314 p->threads[0].stopReading = True;
319 Event_Set(&p->threads[0].canWrite);
320 Event_Set(&p->threads[0].canRead);
323 LoopThread_WaitSubThread(&p->threads[j].thread); [all...] |
/external/clang/test/OpenMP/ |
ordered_ast_print.cpp | 23 #pragma omp ordered threads 62 // CHECK-NEXT: #pragma omp ordered threads 98 // CHECK-NEXT: #pragma omp ordered threads 139 #pragma omp ordered threads 174 // CHECK-NEXT: #pragma omp ordered threads
|
/external/valgrind/gdbserver_tests/solaris/ |
nlcontrolc.stdoutB.exp | 8 Now threads are burning CPU
|
/external/libevent/ |
event_iocp.c | 189 port->threads = mm_calloc(port->n_threads, sizeof(HANDLE)); 190 if (!port->threads) 207 port->threads[i] = (HANDLE)th; 217 if (port->threads) 218 mm_free(port->threads); 231 mm_free(port->threads);
|
/external/libvpx/libvpx/test/ |
vpxenc.sh | 274 for threads in ${num_threads}; do 278 --threads=${threads} \ 302 for threads in ${num_threads}; do 306 --threads=${threads} \
|
/toolchain/binutils/binutils-2.25/gold/ |
workqueue.cc | 128 bool threads = options.threads(); local 130 threads = false; 132 if (!threads) 260 // Kick all the threads to make them exit. 443 // them to the run queue and signal any other threads. This must be 490 // function is called by all threads. 499 // Set the number of threads to use for the workqueue, if we are using 500 // threads. 503 Workqueue::set_thread_count(int threads) [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
linux_ptrace_dumper_unittest.cc | 138 ASSERT_GE(dumper.threads().size(), (size_t)1); 140 for (size_t i = 0; i < dumper.threads().size(); ++i) { 141 if (dumper.threads()[i] == getppid()) { 387 // Pass the pipe fd and the number of threads as arguments. 402 // Wait for all child threads to indicate that they have started 403 for (int threads = 0; threads < kNumberOfThreadsInHelperProgram; threads++) { 426 EXPECT_EQ((size_t)kNumberOfThreadsInHelperProgram, dumper.threads().size()); 430 for (size_t i = 0; i < dumper.threads().size(); ++i) [all...] |
/external/opencv3/modules/cudastereo/src/cuda/ |
disparity_bilateral_filter.cu | 165 dim3 threads(32, 8, 1); 167 grid.x = divUp(disp.cols, threads.x << 1); 168 grid.y = divUp(disp.rows, threads.y); 175 disp_bilateral_filter<1><<<grid, threads, 0, stream>>>(0, disp.data, disp.step/sizeof(T), img.data, img.step, disp.rows, disp.cols, table_color, table_space, table_step, radius, edge_disc, max_disc); 178 disp_bilateral_filter<1><<<grid, threads, 0, stream>>>(1, disp.data, disp.step/sizeof(T), img.data, img.step, disp.rows, disp.cols, table_color, table_space, table_step, radius, edge_disc, max_disc); 185 disp_bilateral_filter<3><<<grid, threads, 0, stream>>>(0, disp.data, disp.step/sizeof(T), img.data, img.step, disp.rows, disp.cols, table_color, table_space, table_step, radius, edge_disc, max_disc); 188 disp_bilateral_filter<3><<<grid, threads, 0, stream>>>(1, disp.data, disp.step/sizeof(T), img.data, img.step, disp.rows, disp.cols, table_color, table_space, table_step, radius, edge_disc, max_disc);
|
/external/guava/guava-tests/test/com/google/common/base/ |
SuppliersTest.java | 269 final Thread[] threads = new Thread[numThreads]; local 286 for (Thread thread : threads) { 302 "timed out waiting for other threads to block" + 316 threads[i] = new Thread() { 322 for (Thread t : threads) { 325 for (Thread t : threads) { 352 Thread[] threads = new Thread[numThreads]; local 354 threads[i] = new Thread() { 362 for (Thread t : threads) { 365 for (Thread t : threads) { [all...] |