| /src/usr.sbin/cpuctl/arch/ |
| cpuctl_i386.h | 11 uint32_t ci_vendor[4]; /* vendor string */ member in struct:cpu_info
|
| i386.c | 1546 ci->ci_vendor[0] = descs[1]; 1547 ci->ci_vendor[2] = descs[2]; 1548 ci->ci_vendor[1] = descs[3]; 1549 ci->ci_vendor[3] = 0; 1702 if (!strncmp((char *)ci->ci_vendor, 2016 if (!strncmp((char *)ci->ci_vendor, 2025 if (ci->ci_vendor[0] != '\0') 2026 vendorname = (char *)&ci->ci_vendor[0]; 2599 if (!strcmp((char *)ci.ci_vendor, "AuthenticAMD")) 2601 else if (!strcmp((char *)ci.ci_vendor, "GenuineIntel") [all...] |
| /src/sys/arch/x86/x86/ |
| identcpu.c | 694 if (memcmp("Geode by NSC", ci->ci_vendor, 12) != 0 || 881 ci->ci_vendor[0] = descs[1]; 882 ci->ci_vendor[2] = descs[2]; 883 ci->ci_vendor[1] = descs[3]; 884 ci->ci_vendor[3] = 0; 887 if (memcmp(ci->ci_vendor, "GenuineIntel", 12) == 0) 889 else if (memcmp(ci->ci_vendor, "AuthenticAMD", 12) == 0) 891 else if (memcmp(ci->ci_vendor, "CyrixInstead", 12) == 0) 893 else if (memcmp(ci->ci_vendor, "Geode by NSC", 12) == 0) 895 else if (memcmp(ci->ci_vendor, "CentaurHauls", 12) == 0 [all...] |
| procfs_machdep.c | 397 (char *)ci->ci_vendor,
|
| cpu.c | 724 if (strcmp((char *)(ci->ci_vendor), "AuthenticAMD") == 0) {
|
| /src/sys/arch/x86/include/ |
| cpu.h | 161 uint32_t ci_vendor[4]; /* vendor string */ member in struct:cpu_info
|