Searched refs:__ebx (Results 1 – 2 of 2) 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 …]
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | Registers.hpp | 85 uint32_t getEBX() const { return _registers.__ebx; } in getEBX() 86 void setEBX(uint32_t value) { _registers.__ebx = value; } in setEBX() 99 unsigned int __ebx; member 154 return _registers.__ebx; in getRegister() 193 _registers.__ebx = value; in setRegister()
|