Searched refs:__eax (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/Headers/ |
D | cpuid.h | 150 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 151 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 154 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 155 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 159 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ argument 163 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 166 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \ argument 170 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 174 static __inline int __get_cpuid (unsigned int __level, unsigned int *__eax, in __get_cpuid() argument 177 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); in __get_cpuid() [all …]
|
D | intrin.h | 909 unsigned int __eax, __edx; in _xgetbv() local 910 __asm__ ("xgetbv" : "=a" (__eax), "=d" (__edx) : "c" (__xcr_no)); in _xgetbv() 911 return ((unsigned __int64)__edx << 32) | __eax; in _xgetbv() 932 unsigned long __eax; in __readmsr() local 933 __asm__ ("rdmsr" : "=d"(__edx), "=a"(__eax) : "c"(__register)); in __readmsr() 934 return (((unsigned __int64)__edx) << 32) | (unsigned __int64)__eax; in __readmsr()
|
/external/libunwind_llvm/src/ |
D | Registers.hpp | 80 unsigned int __eax; member 130 return _registers.__eax; in getRegister() 166 _registers.__eax = value; in setRegister()
|