Lines Matching refs:edx
4013 unsigned int eax, ebx, ecx, edx, max_level, max_extended_level; in process_cpuid() local
4017 eax = ebx = ecx = edx = 0; in process_cpuid()
4019 __cpuid(0, max_level, ebx, ecx, edx); in process_cpuid()
4021 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e) in process_cpuid()
4026 (char *)&ebx, (char *)&edx, (char *)&ecx); in process_cpuid()
4028 __cpuid(1, fms, ebx, ecx, edx); in process_cpuid()
4046 edx & (1 << 4) ? "TSC" : "-", in process_cpuid()
4047 edx & (1 << 5) ? "MSR" : "-", in process_cpuid()
4048 edx & (1 << 22) ? "ACPI-TM" : "-", in process_cpuid()
4049 edx & (1 << 29) ? "TM" : "-"); in process_cpuid()
4052 if (!(edx & (1 << 5))) in process_cpuid()
4060 ebx = ecx = edx = 0; in process_cpuid()
4061 __cpuid(0x80000000, max_extended_level, ebx, ecx, edx); in process_cpuid()
4069 __cpuid(0x80000007, eax, ebx, ecx, edx); in process_cpuid()
4070 has_invariant_tsc = edx & (1 << 8); in process_cpuid()
4078 __cpuid(0x6, eax, ebx, ecx, edx); in process_cpuid()
4122 __cpuid_count(0x7, 0, eax, ebx, ecx, edx); in process_cpuid()
4138 eax_crystal = ebx_tsc = crystal_hz = edx = 0; in process_cpuid()
4139 __cpuid(0x15, eax_crystal, ebx_tsc, crystal_hz, edx); in process_cpuid()
4176 unsigned int base_mhz, max_mhz, bus_mhz, edx; in process_cpuid() local
4181 base_mhz = max_mhz = bus_mhz = edx = 0; in process_cpuid()
4183 __cpuid(0x16, base_mhz, max_mhz, bus_mhz, edx); in process_cpuid()