Searched refs:cpu_vendor (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/usr.sbin/bhyve/
H A Dxmsr.c216 char cpu_vendor[13]; local
219 ((u_int *)&cpu_vendor)[0] = regs[1];
220 ((u_int *)&cpu_vendor)[1] = regs[3];
221 ((u_int *)&cpu_vendor)[2] = regs[2];
222 cpu_vendor[12] = '\0';
225 if (strcmp(cpu_vendor, "AuthenticAMD") == 0) {
227 } else if (strcmp(cpu_vendor, "GenuineIntel") == 0) {
230 fprintf(stderr, "Unknown cpu vendor \"%s\"\n", cpu_vendor);
/freebsd-11-stable/sys/mips/include/
H A Dcpuinfo.h53 u_int8_t cpu_vendor; member in struct:mips_cpuinfo
/freebsd-11-stable/sys/amd64/vmm/
H A Dvmm_util.c43 return (strcmp(cpu_vendor, "GenuineIntel") == 0);
49 return (strcmp(cpu_vendor, "AuthenticAMD") == 0);
/freebsd-11-stable/stand/userboot/userboot/
H A Dbootinfo64.c136 char *cpu_vendor;
151 cpu_vendor = (char *)vendor;
154 if (strncmp(cpu_vendor, INTEL_VENDOR_ID, 12) != 0 &&
155 strncmp(cpu_vendor, AMD_VENDOR_ID, 12) != 0 &&
156 strncmp(cpu_vendor, CENTAUR_VENDOR_ID, 12) != 0)
/freebsd-11-stable/stand/i386/libi386/
H A Dbootinfo64.c140 char *cpu_vendor; local
156 cpu_vendor = (char *)vendor;
159 if (strncmp(cpu_vendor, INTEL_VENDOR_ID, 12) != 0 &&
160 strncmp(cpu_vendor, AMD_VENDOR_ID, 12) != 0 &&
161 strncmp(cpu_vendor, CENTAUR_VENDOR_ID, 12) != 0)
/freebsd-11-stable/sys/i386/i386/
H A Dlocore.s525 movl $0x4778654e,R(cpu_vendor) # store vendor string
526 movl $0x72446e65,R(cpu_vendor+4)
527 movl $0x6e657669,R(cpu_vendor+8)
528 movl $0,R(cpu_vendor+12)
574 movl $0x69727943,R(cpu_vendor) # store vendor string
575 movl $0x736e4978,R(cpu_vendor+4)
576 movl $0x64616574,R(cpu_vendor+8)
583 movl %ebx,R(cpu_vendor) # store vendor string
584 movl %edx,R(cpu_vendor+4)
585 movl %ecx,R(cpu_vendor
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Didentcpu.c103 char cpu_vendor[20]; /* CPU Origin code */ variable
728 if (*cpu_vendor)
729 printf(" Origin=\"%s\"", cpu_vendor);
1091 if (*cpu_vendor || cpu_id)
1456 ((u_int *)&cpu_vendor)[0] = regs[1];
1457 ((u_int *)&cpu_vendor)[1] = regs[3];
1458 ((u_int *)&cpu_vendor)[2] = regs[2];
1459 cpu_vendor[12] = '\0';
1568 strcpy(cpu_vendor, "IBM");
1632 } else if (cpu == CPU_486 && *cpu_vendor
[all...]
H A Dmca.c306 printf("MCA: Vendor \"%s\", ID 0x%x, APIC ID %d\n", cpu_vendor,
/freebsd-11-stable/sys/x86/include/
H A Dx86_var.h63 extern char cpu_vendor[];
/freebsd-11-stable/sys/mips/mips/
H A Dcpu.c88 cpuinfo->cpu_vendor = MIPS_PRID_CID(prid);
250 switch (cpuinfo.cpu_vendor) {
284 printf("Unknown cid %#x", cpuinfo.cpu_vendor);
/freebsd-11-stable/usr.sbin/bhyvectl/
H A Dbhyvectl.c633 char cpu_vendor[13]; local
636 ((u_int *)&cpu_vendor)[0] = regs[1];
637 ((u_int *)&cpu_vendor)[1] = regs[3];
638 ((u_int *)&cpu_vendor)[2] = regs[2];
639 cpu_vendor[12] = '\0';
641 if (strcmp(cpu_vendor, "AuthenticAMD") == 0) {
643 } else if (strcmp(cpu_vendor, "GenuineIntel") == 0) {
646 fprintf(stderr, "Unknown cpu vendor \"%s\"\n", cpu_vendor);
/freebsd-11-stable/sys/x86/cpufreq/
H A Dest.c1087 "est: cpu_vendor %s, msr %0jx\n", cpu_vendor, msr);
/freebsd-11-stable/sys/compat/linprocfs/
H A Dlinprocfs.c236 i, cpu_vendor, CPUID_TO_FAMILY(cpu_id),

Completed in 168 milliseconds