Home | History | Annotate | Download | only in include

Lines Matching refs:__eax

156 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \
157 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
160 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
161 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
165 #define __cpuid(__level, __eax, __ebx, __ecx, __edx) \
169 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
172 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
176 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
180 static __inline int __get_cpuid (unsigned int __level, unsigned int *__eax,
183 __cpuid(__level, *__eax, *__ebx, *__ecx, *__edx);
189 unsigned int __eax, __ebx, __ecx, __edx;
211 __cpuid(__level, __eax, __ebx, __ecx, __edx);
214 return __eax;