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

<<11121314151617181920>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_decoder.h 108 unsigned int threads; /**< Maximum number of threads to use, default 1 */ member in struct:vpx_codec_dec_cfg
  /hardware/intel/common/utils/media_resource_manager/omx_adaptor/
OMX_adaptor.h 24 #include <utils/threads.h>
  /hardware/qcom/display/msm8960/libexternal/
external.h 24 #include <utils/threads.h>
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.h 21 #include <utils/threads.h>
79 android::Vector<ThreadInfo*> threads; member in class:Ti::Debug::Data
255 // retain reference to threads data
258 // iterate over threads to locate thread id,
262 const int size = int(data->threads.size());
265 ThreadInfo * const threadInfo = data->threads.itemAt(i);
  /hardware/ti/omap4xxx/camera/
CameraProperties.cpp 25 #include <utils/threads.h>
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 126 // We want to test that we unblock *all* the threads blocked on a socket, not just one.
130 final ArrayList<Thread> threads = new ArrayList<Thread>(); local
148 threads.add(t);
150 for (Thread t : threads) {
154 for (Thread t : threads) {
  /packages/services/Car/libvehiclenetwork/libvehiclenetwork-audio-helper/include/
VehicleNetworkAudioHelper.h 23 #include <utils/threads.h>
  /system/extras/iotop/
taskstats.h 44 int threads() const { return threads_; } function in class:TaskStatistics
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 60 , threads(MBlockReportThread)
261 if (rep->threads.Size())
262 return rep->threads[0]->stack;
348 for (uptr i = 0; i < rep->threads.Size(); i++)
349 PrintThread(rep->threads[i]);
407 for (uptr i = 0; i < rep->threads.Size(); i++)
408 PrintThread(rep->threads[i]);
  /external/valgrind/coregrind/
m_libcassert.c 368 = (VgStack*)VG_(threads)[i].os_state.valgrind_stack_base;
372 if (VG_(threads)[i].status == VgTs_Empty
375 VG_(name_of_ThreadStatus)(VG_(threads)[i].status),
376 VG_(threads)[i].os_state.lwpid);
377 if (VG_(threads)[i].status != VgTs_Empty)
379 if (stack_usage && VG_(threads)[i].client_stack_highest_byte != 0 ) {
383 VG_(stack_limits)(VG_(threads)[i].client_stack_highest_byte,
m_signals.c 65 SIGVGKILL is used to terminate threads. When one thread wants
149 something worse: dealing with signals delivered to threads in
    [all...]
  /external/deqp/framework/delibs/dethread/
deThreadTest.c 274 /* Mutex and threads. */
302 deThread threads[2]; local
314 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(threads); ndx++)
316 threads[ndx] = deThread_create(mutexTestThr2, &data, DE_NULL);
317 DE_TEST_ASSERT(threads[ndx]);
322 for (ndx = 0; ndx < (int)DE_LENGTH_OF_ARRAY(threads); ndx++)
324 deBool ret = deThread_join(threads[ndx]);
326 deThread_destroy(threads[ndx]);
630 deThreadArray* threads = tmpPool ? deThreadArray_create(tmpPool) : DE_NULL; local
639 DE_TEST_ASSERT(deThreadArray_pushBack(threads, thread))
    [all...]
  /external/opencv3/modules/cudaobjdetect/src/cuda/
hog.cu 207 dim3 threads(32, 2, nblocks);
218 compute_hists_kernel_many_blocks<nblocks><<<grid, threads, smem>>>(
261 template <int nthreads, // Number of threads which process one block historgam
302 dim3 threads(nthreads, 1, nblocks);
309 normalize_hists_kernel_many_blocks<32, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
311 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
313 normalize_hists_kernel_many_blocks<64, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
315 normalize_hists_kernel_many_blocks<256, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
317 normalize_hists_kernel_many_blocks<512, nblocks><<<grid, threads>>>(block_hist_size, img_block_width, block_hists, threshold);
332 template <int nthreads, // Number of threads per one histogram bloc
    [all...]
  /system/core/toolbox/
top.c 90 static int max_procs, delay, iterations, threads; variable
162 if (!strcmp(argv[i], "-H") || !strcmp(argv[i], "-t")) { threads = 1; continue; }
172 if (threads && proc_cmp == &proc_thr_cmp) {
173 fprintf(stderr, "Sorting by threads per thread makes no sense!\n");
238 new_procs = calloc(INIT_PROCS * (threads ? THREAD_MULT : 1), sizeof(struct proc_info *));
239 num_new_procs = INIT_PROCS * (threads ? THREAD_MULT : 1);
256 if (!threads) {
291 if (threads) {
315 if (!threads)
471 if (!threads)
    [all...]
  /external/libchrome/base/trace_event/
memory_dump_manager_unittest.cc 384 // threads and registering a MemoryDumpProvider on each of them. At each
390 std::vector<scoped_ptr<Thread>> threads; local
393 // Create the threads and setup the expectations. Given that at each iteration
397 threads.push_back(make_scoped_ptr(new Thread("test thread")));
398 auto thread = threads.back().get();
414 while (!threads.empty()) {
429 threads.back()->task_runner()->PostTaskAndReply(FROM_HERE, unregistration,
434 threads.back()->Stop();
435 threads.pop_back();
551 std::vector<scoped_ptr<TestIOThread>> threads; local
601 std::vector<scoped_ptr<TestIOThread>> threads; local
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 889 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts)
892 DE_ASSERT(threads.empty());
901 threads.push_back(new TestThread(threadContexts));
907 void destroyThreads (vector<TestThread*>& threads)
909 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++)
911 delete threads[threadNdx];
912 threads[threadNdx] = DE_NULL;
915 threads.clear();
918 void startThreads (vector<TestThread*>& threads)
920 for (int threadNdx = 0; threadNdx < (int)threads.size(); threadNdx++
1041 vector<TestThread*> threads; local
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 41 /* Where worker threads stand idle */
42 Vector threads = new Vector(); field in class:TestWebServer
44 /* List of all active worker threads */
50 /* max # worker threads */
216 * The AcceptThread is responsible for initiating worker threads
264 synchronized (threads) {
265 if (threads.isEmpty()) {
271 w = (Worker) threads.elementAt(0);
272 threads.removeElementAt(0);
298 // Stop worker threads from continuin
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
process.py 33 def threads(self): member in class:Process
58 thread = self.threads.get(tid, None)
  /external/libvorbis/doc/vorbisfile/
Makefile.am 21 style.css threads.html vorbis_comment.html vorbis_info.html\
  /external/libvpx/libvpx/test/
encode_perf_test.cc 125 void set_threads(unsigned int threads) {
126 threads_ = threads;
193 printf("\t\"threads\" : %d\n", kEncodePerfTestThreads[k]);
vp9_frame_parallel_test.cc 50 cfg.threads = num_threads;
102 << "threads = " << t;
138 cfg.threads = num_threads;
183 << "threads = " << t;
  /external/v8/tools/gcmole/
bootstrap.sh 104 --disable-threads \
  /external/valgrind/drd/scripts/
download-and-build-gcc 66 --enable-threads=posix \
  /external/autotest/client/tests/kvm/tests/
virtio_console.py     [all...]
  /cts/suite/audio_quality/test/
AudioPlayTestCommon.h 21 #include <utils/threads.h>

Completed in 1882 milliseconds

<<11121314151617181920>>