Lines Matching defs:__eax
261 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \
262 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
265 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \
266 __asm("cpuid" : "=a"(__eax), "=b" (__ebx), "=c"(__ecx), "=d"(__edx) \
270 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \
274 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
277 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \
281 : "=a"(__eax), "=r" (__ebx), "=c"(__ecx), "=d"(__edx) \
288 unsigned int __eax, __ebx, __ecx, __edx;
310 __cpuid(__leaf, __eax, __ebx, __ecx, __edx);
313 return __eax;
316 static __inline int __get_cpuid (unsigned int __leaf, unsigned int *__eax,
325 __cpuid(__leaf, *__eax, *__ebx, *__ecx, *__edx);
331 unsigned int *__eax, unsigned int *__ebx,
339 __cpuid_count(__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx);