HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 176 - 200 of 1207) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/asm/
smp.h 24 #include <linux/threads.h>
  /external/opencv3/modules/cudastereo/src/cuda/
stereobp.cu 168 dim3 threads(32, 8, 1);
171 grid.x = divUp(left.cols, threads.x);
172 grid.y = divUp(left.rows, threads.y);
174 comp_data<1, short><<<grid, threads, 0, stream>>>(left, right, (PtrStepSz<short>)data);
182 dim3 threads(32, 8, 1);
185 grid.x = divUp(left.cols, threads.x);
186 grid.y = divUp(left.rows, threads.y);
188 comp_data<1, float><<<grid, threads, 0, stream>>>(left, right, (PtrStepSz<float>)data);
197 dim3 threads(32, 8, 1);
200 grid.x = divUp(left.cols, threads.x)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
AllThreadsTest.java 72 int threads = reply.getNextValueAsInt(); local
73 logWriter.println("Number of threads = " + threads);
74 assertTrue("Number of threads must be > 0", threads > 0);
76 for (int i = 0; i < threads; i++) {
111 * all threads returned by command have only valid thread status:
131 int threads = reply.getNextValueAsInt(); local
132 logWriter.println("Number of threads = " + threads);
202 int threads = reply.getNextValueAsInt(); local
    [all...]
  /external/autotest/client/common_lib/
decorators_unittest.py 37 threads = [threading.Thread(target=thread_body,
40 for thread in threads:
42 for thread in threads:
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
tab_id_importer_unittest.py 69 self.assertEqual(2, len(p.threads))
70 self.assertIs(p.threads[1], m.GetRendererThreadFromTabId('tab-id-1'))
71 self.assertIs(p.threads[2], m.GetRendererThreadFromTabId('tab-id-2'))
  /external/deqp/framework/delibs/decpp/
deSpinBarrier.cpp 51 // If last threads were removed, m_numEntered > 0 && m_numRemoved > 0
83 // m_numEntered must not be touched until all threads have had
98 // threads. Since m_numThreads only changes if all threads are inside the spinbarrier,
100 // all threads.
103 // Release all waiting threads. Since this thread has not been removed, m_numLeaving will
132 // Wait for other threads exiting previous barrier
150 // Release all waiting threads.
238 std::vector<TestThread*> threads (numThreads, static_cast<TestThread*>(DE_NULL));
242 threads[ndx] = new TestThread(barrier, &sharedVar, numThreads, ndx)
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterThreadTest.java 55 List threads = new LinkedList(); local
61 threads.add(thread);
63 ListIterator i = threads.listIterator();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterThreadTest.java 51 List threads = new LinkedList(); local
57 threads.add(thread);
59 ListIterator i = threads.listIterator();
  /external/testng/src/main/java/org/testng/internal/thread/
ExecutorAdapter.java 54 List<Thread> threads = m_threadFactory.getThreads(); local
55 int threadCount = threads.size();
58 result[i] = threads.get(i).getStackTrace();
  /external/v8/test/cctest/
test-threads.cc 69 i::List<ThreadIdValidationThread*> threads(kNThreads);
76 threads.Add(newThread);
85 delete threads[i];
  /external/valgrind/helgrind/tests/
tc21_pthonce.c 15 * "Using POSIX Threads: Programming with Pthreads"
25 * A program spawns multiple threads and each one tries to
31 * exit of the threads using the pthread_join() operation.
43 /* With more than 2 threads, the precise error reports vary between
45 simple and just have 2 threads and so just 1 race. */
53 /* This is a hack: delay threads except the first enough so as to
54 ensure threads[0] gets to the pthread_once call first. This is so
80 pthread_t threads[NUM_THREADS]; local
87 r= pthread_create(&threads[i], NULL, child, &id_arg[i]);
92 pthread_join(threads[i], NULL)
    [all...]
  /external/webrtc/webrtc/base/
criticalsection_unittest.cc 79 // Signal all threads to start.
82 // Wait for all threads to finish.
99 // Returns true if all threads have finished.
199 void StartThreads(ScopedPtrCollection<Thread>* threads,
205 threads->PushBack(thread);
246 // Create and start lots of threads.
248 ScopedPtrCollection<Thread> threads; local
249 StartThreads(&threads, &runner);
258 // Create and start lots of threads.
261 ScopedPtrCollection<Thread> threads; local
273 ScopedPtrCollection<Thread> threads; local
285 ScopedPtrCollection<Thread> threads; local
297 ScopedPtrCollection<Thread> threads; local
    [all...]
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 79 Thread[] threads = new Thread[activeCount()]; local
80 int count = enumerate(threads);
83 threads[i].join();
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_lock.py 56 threads = []
57 threads.append(Thread(target = self.theThread,
59 threads.append(Thread(target = self.theThread,
61 threads.append(Thread(target = self.theThread,
63 threads.append(Thread(target = self.theThread,
65 threads.append(Thread(target = self.theThread,
67 threads.append(Thread(target = self.theThread,
69 threads.append(Thread(target = self.theThread,
71 threads.append(Thread(target = self.theThread,
73 threads.append(Thread(target = self.theThread
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dummy_threading.py 44 self.threads = []
49 self.threads.append(t)
54 for t in self.threads:
test_threadedtempfile.py 3 in each of NUM_THREADS threads, recording the number of successes and
49 threads = []
54 threads.append(t)
61 for t in threads:
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_lock.py 56 threads = []
57 threads.append(Thread(target = self.theThread,
59 threads.append(Thread(target = self.theThread,
61 threads.append(Thread(target = self.theThread,
63 threads.append(Thread(target = self.theThread,
65 threads.append(Thread(target = self.theThread,
67 threads.append(Thread(target = self.theThread,
69 threads.append(Thread(target = self.theThread,
71 threads.append(Thread(target = self.theThread,
73 threads.append(Thread(target = self.theThread
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dummy_threading.py 44 self.threads = []
49 self.threads.append(t)
54 for t in self.threads:
test_threadedtempfile.py 3 in each of NUM_THREADS threads, recording the number of successes and
49 threads = []
54 threads.append(t)
61 for t in threads:

Completed in 1916 milliseconds

1 2 3 4 5 6 78 91011>>