Home
last modified time | relevance | path

Searched refs:Ebx (Results 1 – 11 of 11) sorted by relevance

/external/scudo/standalone/
Dchecksum.cpp42 u32 Eax, Ebx = 0, Ecx = 0, Edx = 0; in hasHardwareCRC32() local
43 __get_cpuid(0, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
44 const bool IsIntel = (Ebx == signature_INTEL_ebx) && in hasHardwareCRC32()
47 const bool IsAMD = (Ebx == signature_AMD_ebx) && (Edx == signature_AMD_edx) && in hasHardwareCRC32()
49 const bool IsHygon = (Ebx == signature_HYGON_ebx) && in hasHardwareCRC32()
54 __get_cpuid(1, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
/external/llvm-project/compiler-rt/lib/scudo/standalone/
Dchecksum.cpp42 u32 Eax, Ebx = 0, Ecx = 0, Edx = 0; in hasHardwareCRC32() local
43 __get_cpuid(0, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
44 const bool IsIntel = (Ebx == signature_INTEL_ebx) && in hasHardwareCRC32()
47 const bool IsAMD = (Ebx == signature_AMD_ebx) && (Edx == signature_AMD_edx) && in hasHardwareCRC32()
49 const bool IsHygon = (Ebx == signature_HYGON_ebx) && in hasHardwareCRC32()
54 __get_cpuid(1, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
/external/llvm-project/compiler-rt/lib/scudo/
Dscudo_utils.cpp74 u32 Eax, Ebx, Ecx, Edx; in hasHardwareCRC32() local
75 __get_cpuid(0, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
76 const bool IsIntel = (Ebx == signature_INTEL_ebx) && in hasHardwareCRC32()
79 const bool IsAMD = (Ebx == signature_AMD_ebx) && in hasHardwareCRC32()
82 const bool IsHygon = (Ebx == signature_HYGON_ebx) && in hasHardwareCRC32()
87 __get_cpuid(1, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
/external/compiler-rt/lib/scudo/
Dscudo_utils.cpp49 u32 Ebx; member
57 : "=a" (info->Eax), "=b" (info->Ebx), "=c" (info->Ecx), "=d" (info->Edx) in getCPUID()
68 if (memcmp(reinterpret_cast<char *>(&Info.Ebx), "Genu", 4) == 0 && in isSupportedCPU()
73 if (memcmp(reinterpret_cast<char *>(&Info.Ebx), "Auth", 4) == 0 && in isSupportedCPU()
/external/rust/crates/gdbstub/src/arch/x86/reg/
Did.rs57 Ebx, enumerator
90 3 => (Ebx, 4), in from_raw_id()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/x86/
DRegisterContextWindows_x86.cpp186 return ReadRegisterHelper(CONTEXT_INTEGER, "EBX", m_context.Ebx, reg_value); in ReadRegister()
230 m_context.Ebx = reg_value.GetAsUInt32(); in WriteRegister()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeRegisterContextWindows_WoW64.cpp125 reg_value.SetUInt32(tls_context.Ebx); in GPRRead()
188 tls_context.Ebx = reg_value.GetAsUInt32(); in GPRWrite()
DNativeRegisterContextWindows_i386.cpp131 reg_value.SetUInt32(tls_context.Ebx); in GPRRead()
196 tls_context.Ebx = reg_value.GetAsUInt32(); in GPRWrite()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86Base.h616 Variable *Ecx, Variable *Ebx, bool Locked) { in _cmpxchg8b() argument
618 Context.insert<typename Traits::Insts::Cmpxchg8b>(Addr, Edx, Eax, Ecx, Ebx, in _cmpxchg8b()
DIceInstX86BaseImpl.h230 Variable *Ebx, bool Locked) in InstX86Cmpxchg8b() argument
236 assert(Ebx->getRegNum() == RegisterSet::Reg_ebx); in InstX86Cmpxchg8b()
241 this->addSource(Ebx); in InstX86Cmpxchg8b()
DIceInstX86Base.h2557 Variable *Ebx, bool Locked) { in create()
2559 InstX86Cmpxchg8b(Func, Dest, Edx, Eax, Ecx, Ebx, Locked); in create()
2570 Variable *Eax, Variable *Ecx, Variable *Ebx, bool Locked);