Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dchecksum.cpp45 u32 Eax, Ebx = 0, Ecx = 0, Edx = 0; in hasHardwareCRC32() local
46 __get_cpuid(0, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
47 const bool IsIntel = (Ebx == signature_INTEL_ebx) && in hasHardwareCRC32()
50 const bool IsAMD = (Ebx == signature_AMD_ebx) && (Edx == signature_AMD_edx) && in hasHardwareCRC32()
52 const bool IsHygon = (Ebx == signature_HYGON_ebx) && in hasHardwareCRC32()
57 __get_cpuid(1, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
/freebsd/sys/contrib/edk2/Include/Library/
H A DBaseLib.h27 UINT32 Ebx; member
5850 OUT UINT32 *Ebx OPTIONAL,
5893 OUT UINT32 *Ebx OPTIONAL,
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DDebugSupport.h125 UINT32 Ebx; member
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp1087 Printf("ebx = %lx ", ctx->Ebx); in DumpAllRegisters()