Searched refs:eax (Results 1 – 1 of 1) sorted by relevance
79 uint32_t eax; in AtomicOps_Internalx86CPUFeaturesInit() local85 cpuid(eax, ebx, ecx, edx, 0); in AtomicOps_Internalx86CPUFeaturesInit()93 cpuid(eax, ebx, ecx, edx, 1); in AtomicOps_Internalx86CPUFeaturesInit()95 int family = (eax >> 8) & 0xf; // family and model fields in AtomicOps_Internalx86CPUFeaturesInit()96 int model = (eax >> 4) & 0xf; in AtomicOps_Internalx86CPUFeaturesInit()98 family += (eax >> 20) & 0xff; in AtomicOps_Internalx86CPUFeaturesInit()99 model += ((eax >> 16) & 0xf) << 4; in AtomicOps_Internalx86CPUFeaturesInit()