Searched refs:ebx (Results 1 – 5 of 5) sorted by relevance
/tools/power/cpupower/debug/i386/ |
D | intel_gsic.c | 43 r.ebx & 0xffff); in main() 45 (r.ebx >> 16) & 0xffff); in main() 48 if (((r.ebx >> 16) & 0xffff) != 0x82) { in main() 55 if ((r.ebx & 0xffff) != 0xb2) { in main() 65 printf("ebx = 0x%.8x\n", r.ebx); in main()
|
/tools/power/x86/x86_energy_perf_policy/ |
D | x86_energy_perf_policy.c | 139 unsigned int eax, ebx, ecx, edx, max_level; in validate_cpuid() local 142 eax = ebx = ecx = edx = 0; in validate_cpuid() 144 asm("cpuid" : "=a" (max_level), "=b" (ebx), "=c" (ecx), in validate_cpuid() 147 if (ebx != 0x756e6547 || edx != 0x49656e69 || ecx != 0x6c65746e) { in validate_cpuid() 150 (char *)&ebx, (char *)&edx, (char *)&ecx); in validate_cpuid() 176 asm("cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (6)); in validate_cpuid()
|
/tools/power/cpupower/utils/helpers/ |
D | cpuid.c | 26 unsigned int eax, ebx, ecx, edx; \ 27 __cpuid(op, eax, ebx, ecx, edx); \ 31 cpuid_func(ebx);
|
/tools/perf/arch/x86/tests/ |
D | regs_load.S | 68 movl %ebx, BX(%edi)
|
/tools/power/x86/turbostat/ |
D | turbostat.c | 1996 unsigned int eax, ebx, ecx, edx, max_level; in check_cpuid() local 1999 eax = ebx = ecx = edx = 0; in check_cpuid() 2001 __get_cpuid(0, &max_level, &ebx, &ecx, &edx); in check_cpuid() 2003 if (ebx == 0x756e6547 && edx == 0x49656e69 && ecx == 0x6c65746e) in check_cpuid() 2008 (char *)&ebx, (char *)&edx, (char *)&ecx); in check_cpuid() 2010 __get_cpuid(1, &fms, &ebx, &ecx, &edx); in check_cpuid() 2029 ebx = ecx = edx = 0; in check_cpuid() 2030 __get_cpuid(0x80000000, &max_level, &ebx, &ecx, &edx); in check_cpuid() 2039 __get_cpuid(0x80000007, &eax, &ebx, &ecx, &edx); in check_cpuid() 2050 __get_cpuid(0x6, &eax, &ebx, &ecx, &edx); in check_cpuid()
|