Searched defs:__edx (Results 1 - 2 of 2) sorted by relevance
/external/clang/lib/Headers/ |
H A D | cpuid.h | 96 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ 101 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 104 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ 109 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 112 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ 113 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 116 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ 117 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 123 unsigned int *__edx) { 124 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); 121 __get_cpuid(unsigned int __level, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) argument 130 unsigned int __eax, __ebx, __ecx, __edx; local [all...] |
/external/clang/lib/include/ |
H A D | cpuid.h | 96 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ 101 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 104 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ 109 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 112 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ 113 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 116 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ 117 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 123 unsigned int *__edx) { 124 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); 121 __get_cpuid(unsigned int __level, unsigned int *__eax, unsigned int *__ebx, unsigned int *__ecx, unsigned int *__edx) argument 130 unsigned int __eax, __ebx, __ecx, __edx; local [all...] |
Completed in 60 milliseconds