Lines Matching refs:RegEax
86 UINT32 RegEax; in SmmCpuFeaturesLibConstructor() local
94 AsmCpuid (CPUID_VERSION_INFO, &RegEax, NULL, NULL, &RegEdx); in SmmCpuFeaturesLibConstructor()
95 FamilyId = (RegEax >> 8) & 0xf; in SmmCpuFeaturesLibConstructor()
96 ModelId = (RegEax >> 4) & 0xf; in SmmCpuFeaturesLibConstructor()
98 ModelId = ModelId | ((RegEax >> 12) & 0xf0); in SmmCpuFeaturesLibConstructor()
157 AsmCpuid (CPUID_EXTENDED_FUNCTION, &RegEax, NULL, NULL, NULL); in SmmCpuFeaturesLibConstructor()
158 if (RegEax >= CPUID_EXTENDED_CPU_SIG) { in SmmCpuFeaturesLibConstructor()
209 UINT32 RegEax; in SmmCpuFeaturesInitializeProcessor() local
256 AsmCpuid (CPUID_VERSION_INFO, &RegEax, NULL, NULL, &RegEdx); in SmmCpuFeaturesInitializeProcessor()
257 FamilyId = (RegEax >> 8) & 0xf; in SmmCpuFeaturesInitializeProcessor()
258 ModelId = (RegEax >> 4) & 0xf; in SmmCpuFeaturesInitializeProcessor()
260 ModelId = ModelId | ((RegEax >> 12) & 0xf0); in SmmCpuFeaturesInitializeProcessor()