Searched refs:thread_count (Results 1 - 6 of 6) sorted by relevance

/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc137 uint16_t thread_count = 0; local
138 thread_list->ForEach(ThreadCountCallback, &thread_count);
142 JDWP::Append2BE(bytes, thread_count);
/art/runtime/
H A Dthread_pool.cc137 const size_t thread_count = GetThreadCount(); local
139 const size_t active_threads = thread_count - waiting_count_;
291 const size_t thread_count = GetThreadCount(); local
292 for (size_t i = 0; i < thread_count; ++i) {
295 if (steal_index_ >= thread_count) {
296 steal_index_-= thread_count;
/art/runtime/gc/collector/
H A Dmark_sweep.cc809 size_t thread_count = GetThreadCount(paused); local
811 if (kParallelCardScan && thread_count > 1) {
822 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
840 const size_t card_delta = RoundUp(address_range / thread_count + 1,
870 thread_pool->SetMaxActiveWorkers(thread_count - 1);
945 size_t thread_count = GetThreadCount(false); local
946 const bool parallel = kParallelRecursiveMark && thread_count > 1;
964 const size_t n = thread_count * 2;
975 thread_pool->SetMaxActiveWorkers(thread_count - 1);
1288 void MarkSweep::ProcessMarkStackParallel(size_t thread_count) { argument
1313 size_t thread_count = GetThreadCount(paused); local
[all...]
H A Dmark_sweep.h266 void ProcessMarkStackParallel(size_t thread_count)
/art/compiler/driver/
H A Dcompiler_driver.cc356 size_t thread_count, bool dump_stats, bool dump_passes,
378 thread_count_(thread_count),
2101 size_t thread_count; local
2104 thread_count = 1U;
2106 thread_count = thread_count_;
2108 context.ForAll(0, dex_file.NumClassDefs(), InitializeClass, thread_count);
347 CompilerDriver(const CompilerOptions* compiler_options, VerificationResults* verification_results, DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, bool image, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, size_t thread_count, bool dump_stats, bool dump_passes, const std::string& dump_cfg_file_name, CumulativeLogger* timer, int swap_fd, const std::string& profile_file) argument
H A Dcompiler_driver.h108 size_t thread_count, bool dump_stats, bool dump_passes,

Completed in 301 milliseconds