/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) \ 175 unsigned int *__ebx, unsigned int *__ecx, in __get_cpuid() argument 177 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx); in __get_cpuid() [all …]
|
/external/llvm-project/clang/lib/Headers/ |
D | cpuid.h | 238 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 239 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 242 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 243 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \ 247 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument 251 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 254 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument 258 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \ 264 unsigned int __eax, __ebx, __ecx, __edx; in __get_cpuid_max() local 286 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max() [all …]
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/i386/ |
D | MachRegisterStatesI386.h | 27 uint32_t __ebx; member
|
/external/llvm-project/libunwind/src/ |
D | Registers.hpp | 71 uint32_t getEBX() const { return _registers.__ebx; } in getEBX() 72 void setEBX(uint32_t value) { _registers.__ebx = value; } in setEBX() 85 unsigned int __ebx; member 140 return _registers.__ebx; in getRegister() 179 _registers.__ebx = value; in setRegister()
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeRegisterContextLinux_x86_64.cpp | 29 unsigned int *__eax, unsigned int *__ebx, in get_cpuid_count() argument 37 __cpuid_count(__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); in get_cpuid_count()
|