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

12 3

  /art/runtime/gc/collector/
mark_sweep.cc 790 size_t thread_count = GetThreadCount(paused); local
792 if (kParallelCardScan && thread_count > 0) {
802 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
814 const size_t card_delta = RoundUp(address_range / thread_count + 1,
845 thread_pool->SetMaxActiveWorkers(thread_count - 1);
946 size_t thread_count = GetThreadCount(false); local
1426 size_t thread_count = GetThreadCount(paused); local
    [all...]
mark_sweep.h 371 void ProcessMarkStackParallel(size_t thread_count)
  /art/dex2oat/
dex2oat.cc 158 size_t thread_count)
164 *p_dex2oat = new Dex2Oat(Runtime::Current(), compiler_backend, instruction_set, thread_count);
330 size_t thread_count)
334 thread_count_(thread_count),
596 int thread_count = sysconf(_SC_NPROCESSORS_CONF); local
650 if (!ParseInt(thread_count_str, &thread_count)) {
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 91 mach_msg_type_number_t thread_count; local
93 const kern_return_t status = task_threads(task, &thread_list, &thread_count);
99 sizeof(thread_t) * thread_count);
100 return static_cast<size_t>(thread_count);
gtest-death-test.cc 216 // caller not to pass a thread_count of 1.
217 static std::string DeathTestThreadWarning(size_t thread_count) {
221 if (thread_count == 0)
224 msg << "detected " << thread_count << " threads."; local
823 const size_t thread_count = GetThreadCount(); local
824 if (thread_count != 1) {
825 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/chromium_org/net/test/embedded_test_server/
embedded_test_server.cc 135 const int thread_count = local
150 while (thread_count ==
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 133 for (uptr i = 0; i < suspended_threads_list_.thread_count(); i++) {
150 for (uptr i = 0; i < suspended_threads_list_.thread_count(); i++)
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/gtest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
786 const size_t thread_count = GetThreadCount(); local
787 if (thread_count != 1) {
788 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 178 // caller not to pass a thread_count of 1.
179 static String DeathTestThreadWarning(size_t thread_count) {
183 if (thread_count == 0)
186 msg << "detected " << thread_count << " threads."; local
787 const size_t thread_count = GetThreadCount(); local
788 if (thread_count != 1) {
789 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-death-test.cc 169 // caller not to pass a thread_count of 1.
170 static String DeathTestThreadWarning(size_t thread_count) {
174 if (thread_count == 0)
177 msg << "detected " << thread_count << " threads."; local
739 const size_t thread_count = GetThreadCount(); local
740 if (thread_count != 1) {
741 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/opencv/cv/src/
cvdistransform.cpp 456 int thread_count = cvGetNumThreads(); local
471 // sqr_tab: 2*m, sat_tab: 3*m + 1, d: m*thread_count,
472 pass1_sz = src->rows*(5 + thread_count) + 1;
474 // sqr_tab & inv_tab: n each; f & v: n*thread_count each; z: (n+1)*thread_count
475 pass2_sz = src->cols*(2 + thread_count*3) + thread_count;
497 #pragma omp parallel for num_threads(thread_count)
535 #pragma omp parallel for num_threads(thread_count) schedule(dynamic)
  /external/protobuf/gtest/src/
gtest-death-test.cc 169 // caller not to pass a thread_count of 1.
170 static String DeathTestThreadWarning(size_t thread_count) {
174 if (thread_count == 0)
177 msg << "detected " << thread_count << " threads."; local
739 const size_t thread_count = GetThreadCount(); local
740 if (thread_count != 1) {
741 GTEST_LOG_(WARNING) << DeathTestThreadWarning(thread_count);
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
voronoi.cc 485 int thread_count = dictionary.Get("value").AsInt(); local
487 workers_ = new ThreadPool(thread_count);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
voronoi.cc 454 int thread_count = dictionary.Get("value").AsInt(); local
456 workers_ = new ThreadPool(thread_count);
  /external/chromium_org/media/cdm/ppapi/
ffmpeg_cdm_video_decoder.cc 161 codec_context_->thread_count = kDecodeThreads;
  /external/chromium_org/media/filters/
ffmpeg_video_decoder.cc 371 codec_context_->thread_count = GetThreadCount(codec_context_->codec_id);
  /art/compiler/driver/
compiler_driver.h 95 size_t thread_count, bool dump_stats);
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 154 av_codec_context->thread_count = kDecodeThreads;
  /external/compiler-rt/lib/lsan/
lsan_common.cc 151 for (uptr i = 0; i < suspended_threads.thread_count(); i++) {
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-all.cc     [all...]

Completed in 557 milliseconds

12 3