Home
last modified time | relevance | path

Searched refs:processor_infos (Results 1 – 2 of 2) sorted by relevance

/external/cpuinfo/src/x86/windows/
Dinit.c117 PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX processor_infos = NULL; in cpuinfo_x86_windows_init() local
184 processor_infos = HeapAlloc(heap, 0, max_info_size); in cpuinfo_x86_windows_init()
185 if (processor_infos == NULL) { in cpuinfo_x86_windows_init()
191 …if (GetLogicalProcessorInformationEx(RelationProcessorPackage, processor_infos, &max_info_size) ==… in cpuinfo_x86_windows_init()
199 (PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX) ((uintptr_t) processor_infos + packages_info_size); in cpuinfo_x86_windows_init()
200 for (PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX package_info = processor_infos; in cpuinfo_x86_windows_init()
236 …if (GetLogicalProcessorInformationEx(RelationProcessorCore, processor_infos, &max_info_size) == FA… in cpuinfo_x86_windows_init()
247 (PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX) ((uintptr_t) processor_infos + cores_info_size); in cpuinfo_x86_windows_init()
248 for (PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX core_info = processor_infos; in cpuinfo_x86_windows_init()
/external/XNNPACK/third_party/
Dcpuinfo.patch531 PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX processor_infos = NULL;