Home | History | Annotate | Download | only in Support

Lines Matching refs:Family

285 static void detectX86FamilyModel(unsigned EAX, unsigned *Family,
287 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11
289 if (*Family == 6 || *Family == 0xf) {
290 if (*Family == 0xf)
291 // Examine extended family ID if family ID is F.
292 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27
293 // Examine extended model ID if family ID is 6 or F.
299 getIntelProcessorTypeAndSubtype(unsigned int Family, unsigned int Model,
304 switch (Family) {
477 default: // Unknown family 6 CPU, try to guess.
585 static void getAMDProcessorTypeAndSubtype(unsigned int Family,
593 switch (Family) {
752 unsigned Family = 0, Model = 0;
754 detectX86FamilyModel(EAX, &Family, &Model);
761 getIntelProcessorTypeAndSubtype(Family, Model, Brand_id, Features, &Type,
835 getAMDProcessorTypeAndSubtype(Family, Model, Features, &Type, &Subtype);