Searched defs:thread_count (Results 1 - 5 of 5) sorted by relevance

/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc131 uint16_t thread_count = 0; local
132 thread_list->ForEach(ThreadCountCallback, &thread_count);
136 JDWP::Append2BE(bytes, thread_count);
/art/runtime/
H A Dthread_pool.cc131 const size_t thread_count = GetThreadCount(); local
133 const size_t active_threads = thread_count - waiting_count_;
284 const size_t thread_count = GetThreadCount(); local
285 for (size_t i = 0; i < thread_count; ++i) {
288 if (steal_index_ >= thread_count) {
289 steal_index_-= thread_count;
/art/dex2oat/
H A Ddex2oat.cc158 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),
591 int thread_count = sysconf(_SC_NPROCESSORS_CONF); local
645 if (!ParseInt(thread_count_str, &thread_count)) {
870 if (!Dex2Oat::Create(&p_dex2oat, options, compiler_backend, instruction_set, thread_count)) {
327 Dex2Oat(Runtime* runtime, CompilerBackend compiler_backend, InstructionSet instruction_set, size_t thread_count) argument
/art/runtime/gc/collector/
H A Dmark_sweep.cc790 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
947 const bool parallel = kParallelRecursiveMark && thread_count > 1;
966 const size_t n = thread_count * 2;
977 thread_pool->SetMaxActiveWorkers(thread_count - 1);
1402 void MarkSweep::ProcessMarkStackParallel(size_t thread_count) { argument
1426 size_t thread_count = GetThreadCount(paused); local
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc339 bool image, DescriptorSet* image_classes, size_t thread_count,
348 thread_count_(thread_count),
338 CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set, bool image, DescriptorSet* image_classes, size_t thread_count, bool dump_stats) argument

Completed in 152 milliseconds