HomeSort by relevance Sort by last modified time
    Searched refs:__edx (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) \
176 unsigned int *__edx) {
177 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx);
183 unsigned int __eax, __ebx, __ecx, __edx; local
    [all...]
intrin.h 909 unsigned int __eax, __edx; local
931 unsigned long __edx; local
    [all...]
  /external/libunwind_llvm/src/
Registers.hpp 71 uint32_t getEDX() const { return _registers.__edx; }
72 void setEDX(uint32_t value) { _registers.__edx = value; }
83 unsigned int __edx; member in struct:libunwind::Registers_x86::GPRs
134 return _registers.__edx;
172 _registers.__edx = value;
    [all...]