Searched refs:cputype (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11.0-release/sys/dev/hwpmc/
H A Dhwpmc_intel.c80 enum pmc_cputype cputype; local
88 cputype = -1;
98 cputype = PMC_CPU_INTEL_P5;
105 cputype = PMC_CPU_INTEL_P6;
108 cputype = PMC_CPU_INTEL_PII;
111 cputype = PMC_CPU_INTEL_CL;
114 cputype = PMC_CPU_INTEL_PIII;
117 cputype = PMC_CPU_INTEL_PM;
121 cputype = PMC_CPU_INTEL_CORE;
126 cputype
[all...]
H A Dhwpmc_amd.c879 enum pmc_cputype cputype; local
897 cputype = PMC_CPU_AMD_K7;
904 cputype = PMC_CPU_AMD_K8;
931 pmc_mdep->pmd_cputype = cputype;
/freebsd-11.0-release/sys/arm/arm/
H A Dcpufunc.c561 u_int cputype; variable
705 cputype = cpu_ident();
706 cputype &= CPU_ID_CPU_MASK;
709 if (((cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_ARM_LTD ||
710 (cputype & CPU_ID_IMPLEMENTOR_MASK) == CPU_ID_TI) &&
711 (cputype & 0x0000f000) == 0x00009000) {
725 if (cputype == CPU_ID_MV88FR131 || cputype == CPU_ID_MV88FR571_VD ||
726 cputype == CPU_ID_MV88FR571_41) {
739 if (cputype
[all...]
/freebsd-11.0-release/sys/arm/xscale/ixp425/
H A Dixp425var.h49 /* NB: cputype is setup by set_cpufuncs */
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)
/freebsd-11.0-release/usr.sbin/config/
H A Dconfig.h108 struct cputype { struct
110 SLIST_ENTRY(cputype) cpu_next;
113 SLIST_HEAD(, cputype) cputype;
H A Dconfig.y163 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);
H A Dmkoptions.c66 struct cputype *cp;
71 SLIST_FOREACH(cp, &cputype, cpu_next) {
H A Dmain.c196 SLIST_INIT(&cputype);
219 if (SLIST_EMPTY(&cputype)) {
434 struct cputype *cput;
445 SLIST_FOREACH(cput, &cputype, cpu_next)
/freebsd-11.0-release/sys/arm/mv/armadaxp/
H A Darmadaxp.c129 uint32_t cputype; local
131 cputype = cpu_ident();
132 cputype &= CPU_ID_CPU_MASK;
134 if (cputype == CPU_ID_MV88SV584X_V7)
H A Darmadaxp_mp.c97 uint32_t reg, *src, *dst, cpu_num, div_val, cputype; local
103 cputype = cpu_ident();
104 cputype &= CPU_ID_CPU_MASK;
118 if (cputype == CPU_ID_MV88SV584X_V7) {
/freebsd-11.0-release/contrib/llvm/include/llvm/Object/
H A DMachOUniversal.h54 uint32_t getCPUType() const { return Header.cputype; }
60 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype);
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DMachOUniversal.cpp36 sys::swapByteOrder(H.cputype);
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c41 cpu_type_t cputype; member in struct:baton
93 // find the cputype and the start of the __TEXT,__unwind_info
131 baton->cputype = mh.cputype;
908 if (baton.cputype == CPU_TYPE_X86_64)
912 else if (baton.cputype == CPU_TYPE_I386)
/freebsd-11.0-release/sys/boot/arm/ixp425/boot2/
H A Dixp425_board.c56 static u_int cputype; variable
57 #define cpu_is_ixp43x() (cputype == CPU_ID_IXP435)
77 cputype = cpu_id() & CPU_ID_CPU_MASK;
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp314 uint32_t cputype = O->getHeader().cputype; local
315 if (cputype & MachO::CPU_ARCH_ABI64)
324 if (cputype & MachO::CPU_ARCH_ABI64)
947 uint32_t cputype = O->getHeader().cputype; local
948 if (cputype == MachO::CPU_TYPE_I386 || cputype == MachO::CPU_TYPE_X86_64) {
1130 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
1133 T = MachOObjectFile::getArch(H.cputype,
1220 printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) argument
1227 printCPUType(uint32_t cputype, uint32_t cpusubtype) argument
1346 uint32_t cputype = OFA.getCPUType(); local
7034 PrintMachHeader(uint32_t magic, uint32_t cputype, uint32_t cpusubtype, uint32_t filetype, uint32_t ncmds, uint32_t sizeofcmds, uint32_t flags, bool verbose) argument
8259 PrintThreadCommand(MachO::thread_command t, const char *Ptr, bool isLittleEndian, uint32_t cputype) argument
8523 PrintLoadCommands(const MachOObjectFile *Obj, uint32_t filetype, uint32_t cputype, bool verbose) argument
8674 uint32_t cputype = 0; local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DMachO.h536 uint32_t cputype; member in struct:llvm::MachO::mach_header
546 uint32_t cputype; member in struct:llvm::MachO::mach_header_64
931 uint32_t cputype; member in struct:llvm::MachO::fat_arch
998 sys::swapByteOrder(mh.cputype);
1008 sys::swapByteOrder(H.cputype);
1307 // Constants for the cputype field.
/freebsd-11.0-release/contrib/binutils/bfd/
H A Dlibcoff-in.h156 /* cputype from optional header. */
157 short cputype; member in struct:xcoff_tdata
H A Dcoffcode.h1831 xcoff->cputype = internal_a->o_cputype;
2054 int cputype;
2056 if (xcoff_data (abfd)->cputype != -1)
2057 cputype = xcoff_data (abfd)->cputype & 0xff;
2065 cputype = 0;
2081 cputype = sym.n_type & 0xff;
2083 cputype = 0;
2089 switch (cputype)
4067 if (xcoff_data (abfd)->cputype !
2053 int cputype; local
[all...]
H A Dlibcoff.h160 /* cputype from optional header. */
161 short cputype; member in struct:xcoff_tdata
/freebsd-11.0-release/sys/mips/mips/
H A Dmachdep.c156 int cputype; variable
/freebsd-11.0-release/sys/arm/include/
H A Dcpufunc.h162 extern u_int cputype;
/freebsd-11.0-release/usr.sbin/pmcstudy/
H A Dpmcstudy.c201 char cputype[32]; member in struct:cpu_type
1966 strcpy(the_cpu.cputype, "SandyBridge PMC");
1975 strcpy(the_cpu.cputype, "IvyBridge PMC");
1985 strcpy(the_cpu.cputype, "HASWELL PMC");
1995 strcpy(the_cpu.cputype, "HASWELL PMC");
2028 the_cpu.cputype, name);
2553 printf("For CPU's of type %s the following expressions are available:\n",the_cpu.cputype);
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp398 W.printEnum("CpuType", Header.cputype, makeArrayRef(MachOHeaderCpuTypes));
400 switch (Header.cputype) {
/freebsd-11.0-release/contrib/openbsm/config/
H A Dconfig.guess1180 # "uname -m" is not consistent, so use $cputype instead. 386
1183 if test "$cputype" = "386"; then
1186 UNAME_MACHINE="$cputype"
/freebsd-11.0-release/contrib/openpam/
H A Dconfig.guess1295 # "uname -m" is not consistent, so use $cputype instead. 386
1298 if test "$cputype" = "386"; then
1301 UNAME_MACHINE="$cputype"

Completed in 184 milliseconds

12