| /trueos/sys/dev/hwpmc/ |
| HD | hwpmc_intel.c | 80 enum pmc_cputype cputype; in pmc_intel_initialize() local 88 cputype = -1; in pmc_intel_initialize() 96 cputype = PMC_CPU_INTEL_P5; in pmc_intel_initialize() 103 cputype = PMC_CPU_INTEL_P6; in pmc_intel_initialize() 106 cputype = PMC_CPU_INTEL_PII; in pmc_intel_initialize() 109 cputype = PMC_CPU_INTEL_CL; in pmc_intel_initialize() 112 cputype = PMC_CPU_INTEL_PIII; in pmc_intel_initialize() 115 cputype = PMC_CPU_INTEL_PM; in pmc_intel_initialize() 119 cputype = PMC_CPU_INTEL_CORE; in pmc_intel_initialize() 122 cputype = PMC_CPU_INTEL_CORE2; 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()
|
| /trueos/sys/arm/arm/ |
| HD | cpufunc.c | 829 u_int cputype; variable 971 cputype = cpufunc_id(); in set_cpufuncs() 972 cputype &= CPU_ID_CPU_MASK; in set_cpufuncs() 980 if (((cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_ARM_LTD || in set_cpufuncs() 981 (cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_TI) && in set_cpufuncs() 982 (cputype & 0x0000f000) == 0x00009000) { in set_cpufuncs() 1000 if (cputype == CPU_ID_MV88FR131 || cputype == CPU_ID_MV88FR571_VD || in set_cpufuncs() 1001 cputype == CPU_ID_MV88FR571_41) { in set_cpufuncs() 1014 if (cputype == CPU_ID_MV88FR571_VD || in set_cpufuncs() 1015 cputype == CPU_ID_MV88FR571_41) in set_cpufuncs() [all …]
|
| /trueos/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 | 189 SLIST_INIT(&cputype); in main() 212 if (SLIST_EMPTY(&cputype)) { in main() 426 struct cputype *cput; in configfile_dynamic() 437 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()
|
| /trueos/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()
|
| /trueos/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)
|
| /trueos/contrib/llvm/lib/Object/ |
| HD | MachOUniversal.cpp | 41 SwapValue(H.cputype); in SwapStruct() 82 Triple::getArchTypeName(MachOObjectFile::getArch(Header.cputype)); in getAsObjectFile()
|
| HD | MachOObjectFile.cpp | 114 SwapValue(H.cputype); in SwapStruct() 125 SwapValue(H.cputype); in SwapStruct() 293 return O->getHeader().cputype; in getCPUType()
|
| /trueos/contrib/llvm/tools/lldb/source/Host/common/ |
| HD | Host.cpp | 324 uint32_t cputype, cpusubtype; in GetArchitecture() local 326 size_t len = sizeof(cputype); in GetArchitecture() 330 if (::sysctlbyname("hw.cputype", &cputype, &len, NULL, 0) == 0) in GetArchitecture() 349 if (cputype & CPU_ARCH_ABI64) in GetArchitecture() 352 … g_host_arch_32.SetArchitecture (eArchTypeMachO, ~(CPU_ARCH_MASK) & cputype, cpusubtype); in GetArchitecture() 353 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() 358 g_host_arch_32.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() 359 cputype |= CPU_ARCH_ABI64; in GetArchitecture() 360 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture() 365 g_host_arch_32.SetArchitecture (eArchTypeMachO, cputype, cpusubtype); in GetArchitecture()
|
| /trueos/contrib/llvm/include/llvm/Object/ |
| HD | MachOUniversal.h | 53 uint32_t getCPUType() const { return Header.cputype; } in getCPUType()
|
| /trueos/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()
|
| /trueos/contrib/llvm/include/llvm/Support/ |
| HD | MachO.h | 434 uint32_t cputype; member 444 uint32_t cputype; member 821 uint32_t cputype; member
|
| /trueos/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
|
| /trueos/usr.sbin/pmcstudy/ |
| HD | pmcstudy.c | 198 char cputype[32]; member 1535 strcpy(the_cpu.cputype, "SandyBridge PMC"); in set_sandybridge() 1544 strcpy(the_cpu.cputype, "IvyBridge PMC"); in set_ivybridge() 1554 strcpy(the_cpu.cputype, "HASWELL PMC"); in set_haswell() 1575 the_cpu.cputype, name); in set_expression() 2065 printf("For CPU's of type %s the following expressions are available:\n",the_cpu.cputype); in explain_all()
|
| /trueos/sys/mips/mips/ |
| HD | machdep.c | 156 int cputype; variable
|
| /trueos/contrib/sqlite3/ |
| HD | config.guess | 1220 if test "$cputype" = "386"; then 1223 UNAME_MACHINE="$cputype"
|
| /trueos/contrib/ntp/ |
| HD | config.guess | 1220 if test "$cputype" = "386"; then 1223 UNAME_MACHINE="$cputype"
|
| /trueos/contrib/ntp/sntp/ |
| HD | config.guess | 1220 if test "$cputype" = "386"; then 1223 UNAME_MACHINE="$cputype"
|
| /trueos/contrib/openbsm/config/ |
| HD | config.guess | 1183 if test "$cputype" = "386"; then 1186 UNAME_MACHINE="$cputype"
|
| /trueos/contrib/ofed/libibcm/config/ |
| HD | config.guess | 1223 if test "$cputype" = "386"; then 1226 UNAME_MACHINE="$cputype"
|