HomeSort by relevance Sort by last modified time
    Searched refs:threads (Results 376 - 400 of 1186) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/test/channel_transport/
udp_transport_unittest.cc 111 uint8_t threads = 1; local
112 UdpTransport* transport = UdpTransport::Create(id, threads);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsDatabaseHelperTest.java 217 * Try to cause conflicts in getMimeTypeId() by calling it from multiple threads with
243 final Thread[] threads = new Thread[NUM_THREADS]; local
244 for (int i = 0; i < threads.length; i++) {
245 threads[i] = new Thread(r);
246 threads[i].setDaemon(true);
248 for (int i = 0; i < threads.length; i++) {
249 threads[i].start();
251 for (int i = 0; i < threads.length; i++) {
253 threads[i].join();
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 53 these values across threads, as they apply only to the thread they
113 local. They are shared across threads:
231 threads = threading._enumerate()
233 # If enumerating the current threads fails, as it seems to do
238 for thread in threads:
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 53 these values across threads, as they apply only to the thread they
113 local. They are shared across threads:
231 threads = threading._enumerate()
233 # If enumerating the current threads fails, as it seems to do
238 for thread in threads:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 53 these values across threads, as they apply only to the thread they
113 local. They are shared across threads:
231 threads = threading._enumerate()
233 # If enumerating the current threads fails, as it seems to do
238 for thread in threads:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 53 these values across threads, as they apply only to the thread they
113 local. They are shared across threads:
231 threads = threading._enumerate()
233 # If enumerating the current threads fails, as it seems to do
238 for thread in threads:
  /libcore/jsr166-tests/src/test/java/jsr166/
PhaserTest.java 309 List<Thread> threads = new ArrayList<Thread>(); local
312 threads.add(newStartedThread(new CheckedRunnable() {
318 for (Thread thread : threads)
627 List<Thread> threads = new ArrayList<Thread>();
629 threads.add(newStartedThread(new CheckedRunnable() {
639 for (Thread thread : threads)
651 List<Thread> threads = new ArrayList<Thread>();
655 threads.add(newStartedThread(new CheckedRunnable() {
670 for (Thread thread : threads)
727 final List<Thread> threads = new ArrayList<Thread>()
    [all...]
  /external/opencv3/modules/cudastereo/src/cuda/
stereobm.cu 316 dim3 threads(BLOCK_W, 1, 1);
324 stereoKernel<RADIUS><<<grid, threads, smem_size, stream>>>(left.data, right.data, left.step, disp, maxdisp);
397 dim3 threads(16, 16, 1);
400 grid.x = divUp(input.cols, threads.x);
401 grid.y = divUp(input.rows, threads.y);
403 prefilter_kernel<<<grid, threads, 0, stream>>>(output, prefilterCap);
521 dim3 threads(128, 1, 1);
524 grid.x = divUp(input.cols, threads.x);
527 size_t smem_size = (threads.x + threads.x + (winsz/2) * 2 ) * sizeof(float)
    [all...]
  /art/runtime/
thread_android.cc 25 #include <utils/threads.h>
60 // processes, where all threads are in the SP_BACKGROUND cgroup. This means that callers will
thread_linux.cc 60 VLOG(threads) << "Alternate signal stack is " << PrettySize(ss.ss_size) << " at " << ss.ss_sp;
  /cts/suite/audio_quality/test/
AudioLocalTest.cpp 19 #include <utils/threads.h>
  /device/asus/fugu/libaudio/
AudioHardwareInput.h 24 #include <utils/threads.h>
  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraHWI_Mem.h 26 #include <utils/threads.h>
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHAL.cpp 26 #include <utils/threads.h>
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.h 110 Vector<ReportThread*> threads; member in class:__tsan::ReportDesc
  /external/dbus/dbus/
dbus-threads-internal.h 2 /* dbus-threads-internal.h D-Bus thread primitives
28 #include <dbus/dbus-threads.h>
72 /* Private to threading implementations and dbus-threads.c */
  /external/dbus/test/name-test/
run-test.sh 42 echo "running test-threads-init"
43 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-threads-init || die "test-threads-init failed"
  /external/fio/
gettime-thread.c 57 while (threads) {
  /external/google-breakpad/src/google_breakpad/processor/
process_state.h 106 const vector<CallStack*>* threads() const { return &threads_; } function in class:google_breakpad::ProcessState
154 // threads vector. If a dump was produced as a result of a crash, this
  /external/guice/core/test/com/google/inject/
PerformanceComparison.java 180 Thread[] threads = new Thread[threadCount]; local
183 threads[i] = new Thread() {
201 threads[i].start();
206 threads[i].join();
  /external/libunwind/src/coredump/
_UCD_internal.h 95 struct PRSTATUS_STRUCT **threads; member in struct:UCD_info
  /external/libvpx/libvpx/vpx/
svc_context.h 42 int threads; member in struct:__anon17271
vpx_decoder.h 108 unsigned int threads; /**< Maximum number of threads to use, default 1 */ member in struct:vpx_codec_dec_cfg
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
transform_detail.hpp 318 const dim3 threads(ft::simple_block_dim_x, ft::simple_block_dim_y, 1);
319 const dim3 grid(divUp(src.cols, threads.x), divUp(src.rows, threads.y), 1);
321 transformSimple<T, D><<<grid, threads, 0, stream>>>(src, dst, mask, op);
333 const dim3 threads(ft::simple_block_dim_x, ft::simple_block_dim_y, 1);
334 const dim3 grid(divUp(src1.cols, threads.x), divUp(src1.rows, threads.y), 1);
336 transformSimple<T1, T2, D><<<grid, threads, 0, stream>>>(src1, src2, dst, mask, op);
359 const dim3 threads(ft::smart_block_dim_x, ft::smart_block_dim_y, 1);
360 const dim3 grid(divUp(src.cols, threads.x * ft::smart_shift), divUp(src.rows, threads.y), 1)
    [all...]
  /external/skia/tools/flags/
SkCommonFlags.cpp 39 DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, "

Completed in 2345 milliseconds

<<11121314151617181920>>