Lines Matching refs:Model
510 unsigned *Model) { in detectX86FamilyModel() argument
512 *Model = (EAX >> 4) & 0xf; // Bits 4 - 7 in detectX86FamilyModel()
518 *Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19 in detectX86FamilyModel()
523 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model, in getIntelProcessorTypeAndSubtype() argument
544 switch (Model) { in getIntelProcessorTypeAndSubtype()
811 static void getAMDProcessorTypeAndSubtype(unsigned Family, unsigned Model, in getAMDProcessorTypeAndSubtype() argument
823 switch (Model) { in getAMDProcessorTypeAndSubtype()
856 switch (Model) { in getAMDProcessorTypeAndSubtype()
873 if (Model >= 0x60 && Model <= 0x7f) { in getAMDProcessorTypeAndSubtype()
877 if (Model >= 0x30 && Model <= 0x3f) { in getAMDProcessorTypeAndSubtype()
881 if ((Model >= 0x10 && Model <= 0x1f) || Model == 0x02) { in getAMDProcessorTypeAndSubtype()
885 if (Model <= 0x0f) { in getAMDProcessorTypeAndSubtype()
1050 unsigned Family = 0, Model = 0; in getHostCPUName() local
1052 detectX86FamilyModel(EAX, &Family, &Model); in getHostCPUName()
1059 getIntelProcessorTypeAndSubtype(Family, Model, Brand_id, Features, in getHostCPUName()
1062 getAMDProcessorTypeAndSubtype(Family, Model, Features, &Type, &Subtype); in getHostCPUName()