HomeSort by relevance Sort by last modified time
    Searched refs:__ecx (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Headers/
cpuid.h 150 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \
151 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
154 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
155 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
159 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \
163 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
166 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
170 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
175 unsigned int *__ebx, unsigned int *__ecx,
177 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx)
183 unsigned int __eax, __ebx, __ecx, __edx; local
    [all...]
intrin.h     [all...]
  /external/libunwind_llvm/src/
Registers.hpp 69 uint32_t getECX() const { return _registers.__ecx; }
70 void setECX(uint32_t value) { _registers.__ecx = value; }
82 unsigned int __ecx; member in struct:libunwind::Registers_x86::GPRs
132 return _registers.__ecx;
169 _registers.__ecx = value;
    [all...]
  /art/runtime/
runtime_common.cc 154 DumpRegister32(os, "ecx", context->__ss.__ecx);

Completed in 134 milliseconds