Lines Matching refs:this_processor_info
182 ml_processor_info_t this_processor_info; in cpu_boot_thread() local
186 memset(&this_processor_info, 0, sizeof(this_processor_info)); in cpu_boot_thread()
187 this_processor_info.cpu_id = reinterpret_cast<cpu_id_t>(cpu_id); in cpu_boot_thread()
188 this_processor_info.phys_id = cpu_info->phys_id; in cpu_boot_thread()
189 this_processor_info.log_id = cpu_id; in cpu_boot_thread()
190 this_processor_info.cluster_id = cpu_info->cluster_id; in cpu_boot_thread()
191 this_processor_info.cluster_type = cpu_info->cluster_type; in cpu_boot_thread()
192 this_processor_info.l2_cache_size = cpu_info->l2_cache_size; in cpu_boot_thread()
193 this_processor_info.l2_cache_id = cpu_info->l2_cache_id; in cpu_boot_thread()
194 this_processor_info.l3_cache_size = cpu_info->l3_cache_size; in cpu_boot_thread()
195 this_processor_info.l3_cache_id = cpu_info->l3_cache_id; in cpu_boot_thread()
197 gPMGR->initCPUIdle(&this_processor_info); in cpu_boot_thread()
198 this_processor_info.processor_idle = &processor_idle_wrapper; in cpu_boot_thread()
199 this_processor_info.idle_timer = &idle_timer_wrapper; in cpu_boot_thread()
201 kern_return_t result = ml_processor_register(&this_processor_info, in cpu_boot_thread()