HomeSort by relevance Sort by last modified time
    Searched refs:thread_count (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 151 thread_count = 5
152 testing_queue = Queue.Queue(thread_count)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count)
157 for count in xrange(thread_count):
167 self.assertTrue(testing_queue.qsize() == thread_count,
169 (thread_count, DELAY))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_thread.py 151 thread_count = 5
152 testing_queue = Queue.Queue(thread_count)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count)
157 for count in xrange(thread_count):
167 self.assertTrue(testing_queue.qsize() == thread_count,
169 (thread_count, DELAY))
  /external/gemmlowp/internal/
multi_thread_gemm.h 573 int thread_count = std::min(max_count, CeilQuotient(rows, MinRowsPerThread)); local
575 // At this point for small products we already have thread_count==1 so
579 if (thread_count > 1) {
587 thread_count =
588 std::min(thread_count, int(cubic_size / min_cubic_size_per_thread));
590 if (thread_count < 1) {
591 thread_count = 1;
595 assert(thread_count > 0 && thread_count <= max_count);
596 return thread_count;
630 const int thread_count = HowManyThreads<KernelFormat::kRows>( local
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_shader_ps.c 44 uint16_t thread_count; member in struct:pixel_ff
209 uint16_t thread_count; local
217 thread_count = 64 - 1;
220 thread_count = (dev->gt == 3) ? 408 :
224 thread_count = (dev->gt == 2) ? 172 : 48;
229 thread_count = (dev->gt == 2) ? 80 : 40;
233 return thread_count - 1;
401 ff->thread_count = ps_get_gen6_thread_count(dev, info);
443 dw5 = ff->thread_count << GEN6_WM_DW5_MAX_THREADS__SHIFT |
542 dw4 |= ff->thread_count << GEN75_PS_DW4_MAX_THREADS__SHIFT
    [all...]
  /art/runtime/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 148 uint16_t thread_count = 0; local
149 thread_list->ForEach(ThreadCountCallback, &thread_count);
153 JDWP::Append2BE(bytes, thread_count);
  /art/test/931-agent-thread/
agent_thread.cc 74 jint thread_count; local
76 jvmtiError threads_result = jenv->GetAllThreads(&thread_count, &threads);
79 for (jint i = 0; i != thread_count; ++i) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
thread_atheos.h 97 static atomic_t thread_count = 0; variable
108 this_thread = atomic_add(&thread_count, 1);
136 if (atomic_add(&thread_count, 0) == 0) {
thread_beos.h 113 static int32 thread_count = 0; variable
125 this_thread = atomic_add( &thread_count, 1 );
154 threads = atomic_add( &thread_count, 0 );
  /external/python/cpython2/Python/
thread_atheos.h 97 static atomic_t thread_count = 0; variable
108 this_thread = atomic_add(&thread_count, 1);
136 if (atomic_add(&thread_count, 0) == 0) {
thread_beos.h 113 static int32 thread_count = 0; variable
125 this_thread = atomic_add( &thread_count, 1 );
154 threads = atomic_add( &thread_count, 0 );
  /frameworks/native/services/vr/performanced/
task.h 33 size_t thread_count() const { return thread_count_; } function in class:android::dvr::Task
  /external/libchrome/base/synchronization/
condition_variable_unittest.cc 71 explicit WorkQueue(int thread_count);
122 // Compares the |shutdown_task_count_| to the |thread_count| and returns true
125 bool ThreadSafeCheckShutdown(int thread_count);
496 WorkQueue::WorkQueue(int thread_count)
501 thread_count_(thread_count),
503 thread_handles_(new PlatformThreadHandle[thread_count]),
504 assignment_history_(thread_count),
505 completion_history_(thread_count),
581 bool WorkQueue::ThreadSafeCheckShutdown(int thread_count) {
587 all_shutdown = (shutdown_task_count_ == thread_count);
    [all...]
  /art/compiler/jit/
jit_compiler.cc 147 /* thread_count */ 1,
154 size_t thread_count = compiler_driver_->GetThreadCount(); local
156 DCHECK_EQ(thread_count, 1u)
  /bionic/libc/bionic/
pthread_cond.cpp 155 // then wake up thread_count threads.
156 static int __pthread_cond_pulse(pthread_cond_internal_t* cond, int thread_count) {
169 __futex_wake_ex(&cond->state, cond->process_shared(), thread_count);
  /external/libdrm/etnaviv/
etnaviv_gpu.c 76 gpu->specs.thread_count = get_param(dev, core, ETNA_GPU_THREAD_COUNT);
142 *value = gpu->specs.thread_count;
  /art/openjdkjvmti/
ti_stack.h 68 jint thread_count,
  /external/syslinux/com32/gplinclude/dmi/
dmi_processor.h 102 uint16_t thread_count; member in struct:__anon36979
  /external/google-breakpad/src/client/mac/tests/
minidump_generator_test.cc 122 ASSERT_EQ((unsigned int)1, thread_list->thread_count());
213 ASSERT_EQ((unsigned int)1, thread_list->thread_count());
303 ASSERT_EQ((unsigned int)1, thread_list->thread_count());
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
multithreaded_conv.h 58 const int thread_count = 4; local
59 static Eigen::ThreadPool* tp = new Eigen::ThreadPool(thread_count);
63 new Eigen::ThreadPoolDevice(thread_pool_wrapper, thread_count);
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement_unittest.cc 243 int thread_count = 2; // Was 100, but that's too slow. local
248 for (int i = 0; i < thread_count; i++) {
254 for (int i = 0; i < thread_count; i++) {
  /toolchain/binutils/binutils-2.27/gold/
gold.cc 193 int thread_count = options.thread_count_initial(); local
194 if (thread_count == 0)
195 thread_count = cmdline.number_of_input_files();
196 workqueue->set_thread_count(thread_count);
657 int thread_count = options.thread_count_middle(); local
658 if (thread_count == 0)
659 thread_count = std::max(2, input_objects->number_of_input_objects());
660 workqueue->set_thread_count(thread_count);
855 int thread_count = options.thread_count_final(); local
856 if (thread_count == 0
    [all...]
  /external/google-breakpad/src/client/mac/handler/
exception_handler.cc 821 mach_msg_type_number_t thread_count; local
823 if (task_threads(mach_task_self(), &threads_for_task, &thread_count))
827 for (unsigned int i = 0; i < thread_count; ++i) {
839 mach_msg_type_number_t thread_count; local
841 if (task_threads(mach_task_self(), &threads_for_task, &thread_count))
845 for (unsigned int i = 0; i < thread_count; ++i) {
  /art/test/924-threads/
threads.cc 151 jint thread_count; local
154 jvmtiError result = jvmti_env->GetAllThreads(&thread_count, &threads);
162 jobjectArray ret = CreateObjectArray(env, thread_count, "java/lang/Thread", callback);
  /art/test/ti-agent/
jni_binder.cc 197 jint thread_count; local
199 CheckJvmtiError(jvmti_env, jvmti_env->GetAllThreads(&thread_count, &threads));
203 for (jint t = 0; t != thread_count; ++t) {
  /external/autotest/site_utils/lxc/container_pool/
service.py 156 thread_count = len(self._client_threads)
158 ).increment_by(thread_count)
159 logging.debug('Client thread count: %d', thread_count)

Completed in 574 milliseconds

12 3 4 5