Lines Matching refs:eflags
21 static inline const char *cpu_get_model(uint32_t eflags) in cpu_get_model() argument
28 if (eflags == 0x04 || /* v5 */ in cpu_get_model()
29 eflags == 0x05 || /* v55 */ in cpu_get_model()
30 eflags == 0x60 || /* v60 */ in cpu_get_model()
31 eflags == 0x61 || /* v61 */ in cpu_get_model()
32 eflags == 0x62 || /* v62 */ in cpu_get_model()
33 eflags == 0x65 || /* v65 */ in cpu_get_model()
34 eflags == 0x66 || /* v66 */ in cpu_get_model()
35 eflags == 0x67 || /* v67 */ in cpu_get_model()
36 eflags == 0x8067 || /* v67t */ in cpu_get_model()
37 eflags == 0x68 || /* v68 */ in cpu_get_model()
38 eflags == 0x69 || /* v69 */ in cpu_get_model()
39 eflags == 0x71 || /* v71 */ in cpu_get_model()
40 eflags == 0x8071 || /* v71t */ in cpu_get_model()
41 eflags == 0x73 /* v73 */ in cpu_get_model()
46 err = snprintf(buf, sizeof(buf), "unknown (0x%x)", eflags); in cpu_get_model()