| /NextBSD/sys/dev/hwpmc/ |
| HD | hwpmc_intel.c | 80 enum pmc_cputype cputype; in pmc_intel_initialize() local 88 cputype = -1; in pmc_intel_initialize() 98 cputype = PMC_CPU_INTEL_P5; in pmc_intel_initialize() 105 cputype = PMC_CPU_INTEL_P6; in pmc_intel_initialize() 108 cputype = PMC_CPU_INTEL_PII; in pmc_intel_initialize() 111 cputype = PMC_CPU_INTEL_CL; in pmc_intel_initialize() 114 cputype = PMC_CPU_INTEL_PIII; in pmc_intel_initialize() 117 cputype = PMC_CPU_INTEL_PM; in pmc_intel_initialize() 121 cputype = PMC_CPU_INTEL_CORE; in pmc_intel_initialize() 126 cputype = PMC_CPU_INTEL_CORE; in pmc_intel_initialize() [all …]
|
| HD | hwpmc_amd.c | 880 enum pmc_cputype cputype; in pmc_amd_initialize() local 898 cputype = PMC_CPU_AMD_K7; in pmc_amd_initialize() 905 cputype = PMC_CPU_AMD_K8; in pmc_amd_initialize() 932 pmc_mdep->pmd_cputype = cputype; in pmc_amd_initialize()
|
| /NextBSD/sys/arm/arm/ |
| HD | cpufunc.c | 694 u_int cputype; variable 836 cputype = cpufunc_id(); in set_cpufuncs() 837 cputype &= CPU_ID_CPU_MASK; in set_cpufuncs() 840 if (((cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_ARM_LTD || in set_cpufuncs() 841 (cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_TI) && in set_cpufuncs() 842 (cputype & 0x0000f000) == 0x00009000) { in set_cpufuncs() 856 if (cputype == CPU_ID_MV88FR131 || cputype == CPU_ID_MV88FR571_VD || in set_cpufuncs() 857 cputype == CPU_ID_MV88FR571_41) { in set_cpufuncs() 870 if (cputype == CPU_ID_MV88FR571_VD || in set_cpufuncs() 871 cputype == CPU_ID_MV88FR571_41) in set_cpufuncs() [all …]
|
| /NextBSD/usr.sbin/config/ |
| HD | config.y | 163 struct cputype *cp = 164 (struct cputype *)calloc(1, sizeof (struct cputype)); 168 SLIST_INSERT_HEAD(&cputype, cp, cpu_next); 171 struct cputype *cp, *cp2; 172 SLIST_FOREACH_SAFE(cp, &cputype, cpu_next, cp2) { 174 SLIST_REMOVE(&cputype, cp, cputype, cpu_next);
|
| HD | config.h | 108 struct cputype { struct 110 SLIST_ENTRY(cputype) cpu_next; argument 113 SLIST_HEAD(, cputype) cputype;
|
| HD | main.c | 196 SLIST_INIT(&cputype); in main() 219 if (SLIST_EMPTY(&cputype)) { in main() 434 struct cputype *cput; in configfile_dynamic() 445 SLIST_FOREACH(cput, &cputype, cpu_next) in configfile_dynamic()
|
| HD | mkoptions.c | 66 struct cputype *cp; in options() 71 SLIST_FOREACH(cp, &cputype, cpu_next) { in options()
|
| /NextBSD/sys/arm/mv/armadaxp/ |
| HD | armadaxp_mp.c | 108 uint32_t reg, *src, *dst, cpu_num, div_val, cputype; in platform_mp_start_ap() local 114 cputype = cpufunc_id(); in platform_mp_start_ap() 115 cputype &= CPU_ID_CPU_MASK; in platform_mp_start_ap() 129 if (cputype == CPU_ID_MV88SV584X_V7) { in platform_mp_start_ap()
|
| HD | armadaxp.c | 136 uint32_t cputype; in get_tclk() local 138 cputype = cpufunc_id(); in get_tclk() 139 cputype &= CPU_ID_CPU_MASK; in get_tclk() 141 if (cputype == CPU_ID_MV88SV584X_V7) in get_tclk()
|
| /NextBSD/sys/arm/xscale/ixp425/ |
| HD | ixp425var.h | 50 #define cpu_is_ixp42x() (cputype == CPU_ID_IXP425) 51 #define cpu_is_ixp43x() (cputype == CPU_ID_IXP435) 52 #define cpu_is_ixp46x() (cputype == CPU_ID_IXP465)
|
| /NextBSD/contrib/llvm/include/llvm/Object/ |
| HD | MachOUniversal.h | 54 uint32_t getCPUType() const { return Header.cputype; } in getCPUType() 60 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype); in getArchTypeName()
|
| /NextBSD/contrib/llvm/tools/lldb/tools/compact-unwind/ |
| HD | compact-unwind-dumper.c | 41 cpu_type_t cputype; member 131 baton->cputype = mh.cputype; in scan_macho_load_commands() 908 if (baton.cputype == CPU_TYPE_X86_64) in print_encoding() 912 else if (baton.cputype == CPU_TYPE_I386) in print_encoding()
|
| /NextBSD/sys/boot/arm/ixp425/boot2/ |
| HD | ixp425_board.c | 56 static u_int cputype; variable 57 #define cpu_is_ixp43x() (cputype == CPU_ID_IXP435) 77 cputype = cpu_id() & CPU_ID_CPU_MASK; in board_init()
|
| /NextBSD/contrib/llvm/tools/llvm-objdump/ |
| HD | MachODump.cpp | 317 uint32_t cputype = O->getHeader().cputype; in PrintIndirectSymbolTable() local 318 if (cputype & MachO::CPU_ARCH_ABI64) in PrintIndirectSymbolTable() 327 if (cputype & MachO::CPU_ARCH_ABI64) in PrintIndirectSymbolTable() 957 uint32_t cputype = O->getHeader().cputype; in DumpRawSectionContents() local 958 if (cputype == MachO::CPU_TYPE_I386 || cputype == MachO::CPU_TYPE_X86_64) { in DumpRawSectionContents() 1140 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype); in checkMachOAndArchFlags() 1143 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype); in checkMachOAndArchFlags() 1226 static void printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) { in printUnknownCPUType() argument 1227 outs() << " cputype (" << cputype << ")\n"; in printUnknownCPUType() 1233 static void printCPUType(uint32_t cputype, uint32_t cpusubtype) { in printCPUType() argument [all …]
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | MachO.h | 538 uint32_t cputype; member 548 uint32_t cputype; member 935 uint32_t cputype; member 1003 sys::swapByteOrder(mh.cputype); in swapStruct() 1013 sys::swapByteOrder(H.cputype); in swapStruct()
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | coffcode.h | 1830 xcoff->cputype = internal_a->o_cputype; in coff_mkobject_hook() 2053 int cputype; in coff_set_arch_mach_hook() local 2055 if (xcoff_data (abfd)->cputype != -1) in coff_set_arch_mach_hook() 2056 cputype = xcoff_data (abfd)->cputype & 0xff; in coff_set_arch_mach_hook() 2064 cputype = 0; in coff_set_arch_mach_hook() 2080 cputype = sym.n_type & 0xff; in coff_set_arch_mach_hook() 2082 cputype = 0; in coff_set_arch_mach_hook() 2088 switch (cputype) in coff_set_arch_mach_hook() 4066 if (xcoff_data (abfd)->cputype != -1) in coff_write_object_contents() 4067 internal_a.o_cputype = xcoff_data (abfd)->cputype; in coff_write_object_contents()
|
| HD | libcoff-in.h | 157 short cputype; member
|
| /NextBSD/contrib/llvm/lib/Object/ |
| HD | MachOUniversal.cpp | 36 sys::swapByteOrder(H.cputype); in SwapStruct()
|
| /NextBSD/usr.sbin/pmcstudy/ |
| HD | pmcstudy.c | 201 char cputype[32]; member 1966 strcpy(the_cpu.cputype, "SandyBridge PMC"); in set_sandybridge() 1975 strcpy(the_cpu.cputype, "IvyBridge PMC"); in set_ivybridge() 1985 strcpy(the_cpu.cputype, "HASWELL PMC"); in set_haswell() 1995 strcpy(the_cpu.cputype, "HASWELL PMC"); in set_broadwell() 2028 the_cpu.cputype, name); in set_expression() 2557 printf("For CPU's of type %s the following expressions are available:\n",the_cpu.cputype); in explain_all()
|
| /NextBSD/contrib/llvm/tools/llvm-readobj/ |
| HD | MachODumper.cpp | 331 W.printEnum("CpuType", Header.cputype, makeArrayRef(MachOHeaderCpuTypes)); in printFileHeaders() 333 switch (Header.cputype) { in printFileHeaders()
|
| /NextBSD/sys/mips/mips/ |
| HD | machdep.c | 156 int cputype; variable
|
| /NextBSD/sys/arm/include/ |
| HD | cpufunc.h | 176 extern u_int cputype;
|
| /NextBSD/contrib/ofed/libibcm/config/ |
| HD | config.guess | 1223 if test "$cputype" = "386"; then 1226 UNAME_MACHINE="$cputype"
|
| /NextBSD/contrib/openbsm/config/ |
| HD | config.guess | 1183 if test "$cputype" = "386"; then 1186 UNAME_MACHINE="$cputype"
|
| /NextBSD/contrib/ofed/librdmacm/config/ |
| HD | config.guess | 1223 if test "$cputype" = "386"; then 1226 UNAME_MACHINE="$cputype"
|