Home
last modified time | relevance | path

Searched refs:Ecx (Results 1 – 5 of 5) sorted by relevance

/external/scudo/standalone/
Dchecksum.cpp35 u32 Eax, Ebx = 0, Ecx = 0, Edx = 0; in hasHardwareCRC32() local
36 __get_cpuid(0, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
39 (Ecx == signature_INTEL_ecx); in hasHardwareCRC32()
41 (Ecx == signature_AMD_ecx); in hasHardwareCRC32()
44 __get_cpuid(1, &Eax, &Ebx, &Ecx, &Edx); in hasHardwareCRC32()
45 return !!(Ecx & bit_SSE4_2); in hasHardwareCRC32()
/external/compiler-rt/lib/scudo/
Dscudo_utils.cpp50 u32 Ecx; member
57 : "=a" (info->Eax), "=b" (info->Ebx), "=c" (info->Ecx), "=d" (info->Edx) in getCPUID()
70 memcmp(reinterpret_cast<char *>(&Info.Ecx), "ntel", 4) == 0) { in isSupportedCPU()
75 memcmp(reinterpret_cast<char *>(&Info.Ecx), "cAMD", 4) == 0) { in isSupportedCPU()
95 return ((CPUInfo.Ecx >> 20) & 0x1) != 0; in testCPUFeature()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86Base.h623 Variable *Ecx, Variable *Ebx, bool Locked) { in _cmpxchg8b() argument
625 Context.insert<typename Traits::Insts::Cmpxchg8b>(Addr, Edx, Eax, Ecx, Ebx, in _cmpxchg8b()
DIceInstX86BaseImpl.h229 Cfg *Func, X86OperandMem *Addr, Variable *Edx, Variable *Eax, Variable *Ecx, in InstX86Cmpxchg8b() argument
235 assert(Ecx->getRegNum() == RegisterSet::Reg_ecx); in InstX86Cmpxchg8b()
240 this->addSource(Ecx); in InstX86Cmpxchg8b()
DIceInstX86Base.h2556 Variable *Edx, Variable *Eax, Variable *Ecx, in create()
2559 InstX86Cmpxchg8b(Func, Dest, Edx, Eax, Ecx, Ebx, Locked); in create()
2570 Variable *Eax, Variable *Ecx, Variable *Ebx, bool Locked);