Searched refs:__eax (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | cpuid.h | 260 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 261 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 264 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 265 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 269 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 273 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 276 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 280 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 287 unsigned int __eax, __ebx, __ecx, __edx; in __get_cpuid_max() local 309 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max() [all …]
|
H A D | hresetintrin.h | 40 _hreset(int __eax) in _hreset() argument 42 __asm__ ("hreset $0" :: "a"(__eax)); in _hreset()
|
H A D | intrin.h | 430 unsigned long __eax; in __readmsr() local 431 __asm__ ("rdmsr" : "=d"(__edx), "=a"(__eax) : "c"(__register)); in __readmsr() 432 return (((unsigned __int64)__edx) << 32) | (unsigned __int64)__eax; in __readmsr()
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | Registers.hpp | 98 unsigned int __eax; member 148 return _registers.__eax; in getRegister() 184 _registers.__eax = value; in setRegister()
|