Searched refs:cpu_flags (Results 1 – 4 of 4) sorted by relevance
554 uint32_t cpu_flags = SYSPAGE_ENTRY(cpuinfo)->flags; in CPU() local555 if (cpu_flags & ARM_CPU_FLAG_V7) { in CPU()558 } else if (cpu_flags & ARM_CPU_FLAG_V6) { in CPU()564 has_fpu_ = (cpu_flags & CPU_FLAG_FPU) != 0; in CPU()566 if (cpu_flags & ARM_CPU_FLAG_NEON) { in CPU()570 has_vfp3_d32_ = (cpu_flags & ARM_CPU_FLAG_VFP_D32) != 0; in CPU()573 has_idiva_ = (cpu_flags & ARM_CPU_FLAG_IDIV) != 0; in CPU()
22 int cpu_flags = TestCpuFlag(~kCpuInitialized); in TEST_F() local23 printf("Cpu Flags %x\n", cpu_flags); in TEST_F()
109 cpu_flags= self.host.run('cat /proc/cpuinfo | '113 if cpu_flags.find('vmx') != -1:115 elif cpu_flags.find('svm') != -1:
1312 def get_cpu_vendor(cpu_flags=[], verbose=True): argument1316 if not cpu_flags:1317 cpu_flags = get_cpu_flags()1319 if 'vmx' in cpu_flags:1321 elif 'svm' in cpu_flags: