HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 101 - 125 of 1268) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/swap
23 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/native_handle
27 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/detach
31 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/join
35 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/get_id
39 test_name := thread/thread.threads/thread.thread.class/thread.thread.member/joinable
  /external/lldb/test/lang/c/stepping/
TestStepAndBreakpoints.py 71 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_1_in_main)
73 if len(threads) != 1:
76 thread = threads[0]
85 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_a)
86 if len(threads) != 1:
93 thread = threads[0]
98 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
99 if len(threads) != 1:
101 thread = threads[0]
168 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b
    [all...]
  /art/test/114-ParallelGC/src/
Main.java 31 Thread[] threads = new Thread[16]; local
47 CyclicBarrier barrier = new CyclicBarrier(threads.length);
49 threads.length);
50 for (int i = 0; i < threads.length; i++) {
54 for (int i = 0; i < threads.length; i++) {
55 threads[i] = new Thread(new Main(i, queues.get(i), queues.get((i + 1) % threads.length),
58 for (Thread thread : threads) {
65 // Wait for the threads to finish.
66 for (Thread thread : threads) {
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutex_test.cc 99 pthread_t threads[kThreads]; local
101 pthread_create(&threads[i], 0, write_mutex_thread<Mutex>, &data);
103 pthread_join(threads[i], 0);
109 pthread_t threads[kThreads]; local
111 pthread_create(&threads[i], 0, read_mutex_thread<Mutex>, &data);
113 pthread_join(threads[i], 0);
119 pthread_t threads[kThreads]; local
121 pthread_create(&threads[i], 0, write_mutex_thread<SpinMutex>, &data);
123 pthread_join(threads[i], 0);
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 47 /** Must be call first when calling Eigen from multiple threads */
56 /** \returns the max number of threads reserved for Eigen
65 /** Sets the max number of threads reserved for Eigen
101 // - the max number of threads we can create is greater than 1
112 // 2- compute the maximal number of threads from the size of the product:
116 // 3 - compute the number of threads we are going to use
117 Index threads = std::min<Index>(nbThreads(), max_threads);
119 if(threads==1)
128 Index blockCols = (cols / threads) & ~Index(0x3);
129 Index blockRows = (rows / threads) & ~Index(0x7)
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
FileClientSessionCacheTest.java 35 Thread[] threads = new Thread[10]; local
37 for (int i = 0; i < threads.length; i++) {
39 threads[i] = new Thread() {
48 for (Thread thread : threads) {
51 for (Thread thread : threads) {
  /external/eigen/demos/mandelbrot/
mandelbrot.h 45 MandelbrotThread **threads; member in class:MandelbrotWidget
60 threads = new MandelbrotThread*[threadcount];
61 for(int th = 0; th < threadcount; th++) threads[th] = new MandelbrotThread(this, th);
66 for(int th = 0; th < threadcount; th++) delete threads[th];
67 delete[] threads;
  /external/libcxx/test/thread/thread.threads/thread.thread.this/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.this/Android.mk
19 test_name := thread/thread.threads/thread.thread.this/yield
23 test_name := thread/thread.threads/thread.thread.this/sleep_until
27 test_name := thread/thread.threads/thread.thread.this/sleep_for
31 test_name := thread/thread.threads/thread.thread.this/get_id
  /external/lldb/test/lang/objc/objc-stepping/
TestObjCStepping.py 87 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break1)
88 if len(threads) != 1:
91 thread = threads[0]
116 threads = lldbutil.continue_to_breakpoint (process, break2)
117 self.assertTrue (len(threads) == 1, "Continued to second breakpoint in main.")
120 thread = threads[0]
125 threads = lldbutil.continue_to_breakpoint (process, break_returnStruct_call_super)
126 self.assertTrue (len(threads) == 1, "Stepped to the call super line in Source returnsStruct.")
127 thread = threads[0]
136 threads = lldbutil.continue_to_breakpoint (process, break3
    [all...]
  /external/valgrind/main/none/tests/
pth_cvsimple.c 4 * "Using POSIX Threads: Programming with Pthreads"
65 pthread_t threads[3]; local
67 pthread_create(&threads[0], NULL, watch_count, NULL);
69 pthread_create(&threads[1], NULL, inc_count, NULL);
70 pthread_create(&threads[2], NULL, inc_count, NULL);
73 pthread_join(threads[i], NULL);
77 // inc_count threads could fully run before watch_count begins, and so
pth_once.c 4 * "Using POSIX Threads: Programming with Pthreads"
14 * A program spawns multiple threads and each one tries to
20 * exit of the threads using the pthread_join() operation.
57 pthread_t threads[NUM_THREADS]; local
65 if (( rtn = pthread_create(&threads[thread_num],
76 pthread_join(threads[thread_num], NULL);
thread-exits.stdout.exp 2 creating threads...
  /external/valgrind/main/drd/tests/
concurrent_close.cpp 12 /* Happens with two threads also */
32 pthread_t threads[THREAD_COUNT]; local
37 r = pthread_create(&threads[i], &attr, thread, 0);
45 r = pthread_join(threads[i], 0);
  /system/extras/tests/bionic/libc/common/
test_pthread_once.c 65 pthread_t threads[N_THREADS]; local
69 if (pthread_create( &threads[nn], NULL, thread_function, (void*)(long int)nn) < 0) {
76 if (pthread_join(threads[nn], NULL)) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_tkAssocCreate.c 10 * Pthreads-win32 - POSIX Threads Library for Win32
50 * current thread references and what threads a given key
98 assoc->nextThread = (ThreadKeyAssoc *) key->threads;
103 key->threads = (void *) assoc;
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_socket_wrapper_unittest.cc 54 uint8_t threads = 1; local
55 UdpSocketManager* mgr = UdpSocketManager::Create(id, threads);
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.algorithm/swap
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.assign/move
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.destr/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.destr/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.destr/dtor
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.id/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/default
23 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/thread_id
27 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/lt
31 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/copy
35 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/assign
39 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/stream
43 test_name := thread/thread.threads/thread.thread.class/thread.thread.id/eq
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.static/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.static/Android.mk
19 test_name := thread/thread.threads/thread.thread.class/thread.thread.static/hardware_concurrency
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 89 * The {@code ThreadSet} that identifies which threads to sample.
104 * The threads currently known to the profiler for detecting
110 * Map of currently active threads to their identifiers. When
111 * threads disappear they are removed and only referenced by their
112 * identifiers to prevent retaining garbage threads.
134 * specified depth from the threads specified by the specified
147 * @param threadSet The thread set specifies which threads to
148 * sample. In a general purpose program, all threads typically
177 * A ThreadSet specifies the set of threads to sample.
181 * Returns an array containing the threads to be sampled. Th
185 public Thread[] threads(); method in interface:SamplingProfiler.ThreadSet
204 private final Thread[] threads; field in class:SamplingProfiler.ArrayThreadSet
211 public Thread[] threads() { method in class:SamplingProfiler.ArrayThreadSet
231 private Thread[] threads; field in class:SamplingProfiler.ThreadGroupThreadSet
252 public Thread[] threads() { method in class:SamplingProfiler.ThreadGroupThreadSet
    [all...]
  /sdk/emulator/opengl/shared/emugl/common/
thread_store_unittest.cpp 105 TestThread* threads[kNumThreads]; local
109 threads[n] = new TestThread(&simpleThreadFunc, &store);
112 threads[n]->join();
119 delete threads[n];
126 TestThread* threads[kNumThreads]; local
130 threads[n] = new TestThread(&simpleThreadFunc, &store);
133 threads[n]->join();
142 delete threads[n];
  /development/ndk/platforms/android-3/arch-arm/include/asm/
hardirq.h 16 #include <linux/threads.h>
smp.h 15 #include <linux/threads.h>

Completed in 579 milliseconds

1 2 3 45 6 7 8 91011>>