/external/llvm/lib/DebugInfo/CodeView/ |
D | EnumTables.cpp | 158 CV_ENUM_CLASS_ENT(CPUType, Intel8080), 159 CV_ENUM_CLASS_ENT(CPUType, Intel8086), 160 CV_ENUM_CLASS_ENT(CPUType, Intel80286), 161 CV_ENUM_CLASS_ENT(CPUType, Intel80386), 162 CV_ENUM_CLASS_ENT(CPUType, Intel80486), 163 CV_ENUM_CLASS_ENT(CPUType, Pentium), 164 CV_ENUM_CLASS_ENT(CPUType, PentiumPro), 165 CV_ENUM_CLASS_ENT(CPUType, Pentium3), 166 CV_ENUM_CLASS_ENT(CPUType, MIPS), 167 CV_ENUM_CLASS_ENT(CPUType, MIPS16), [all …]
|
/external/llvm/test/ObjectYAML/MachO/ |
D | fat_macho_i386_x86_64.yaml | 8 - cputype: 0x00000007 13 - cputype: 0x01000007 21 cputype: 0x00000007 29 cputype: 0x01000007 44 #CHECK: - cputype: 0x00000007 49 #CHECK: - cputype: 0x01000007 58 #CHECK: cputype: 0x00000007 67 #CHECK: cputype: 0x01000007
|
D | mach_header.yaml | 6 cputype: 0x00000007 17 # CHECK: cputype: 0x00000007
|
D | mach_header_64.yaml | 6 cputype: 0x01000007 18 # CHECK: cputype: 0x01000007
|
/external/autotest/client/site_tests/platform_Rootdev/ |
D | platform_Rootdev.py | 18 def test_no_partition(self, inputDev, cpuType): argument 23 if (cpuType == "arm"): 38 cpuType = utils.get_cpu_arch() 39 logging.debug("cpu type is %s" % cpuType) 55 self.test_no_partition(text, cpuType)
|
/external/valgrind/coregrind/ |
D | launcher-darwin.c | 58 cpu_type_t cputype; member 74 static const char *name_for_cputype(cpu_type_t cputype) in name_for_cputype() argument 78 if (valid_archs[i].cputype == cputype) { in name_for_cputype() 133 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype) in fat_has_cputype() argument 139 if (ntohl(fa[i].cputype) == cputype) return 1; in fat_has_cputype() 166 return name_for_cputype(mh->cputype); in select_arch() 168 return name_for_cputype(OSSwapInt32(mh->cputype)); in select_arch() 181 return name_for_cputype(ntohl(fa->cputype)); in select_arch() 190 if (fat_has_cputype(fh, valid_archs[i].cputype)) { in select_arch() 306 if (!valid_archs[i].cputype) continue; in main() [all …]
|
D | fixup_macho_loadcmds.c | 299 Int cputype; in map_image_aboard() local 301 cputype = CPU_TYPE_X86; in map_image_aboard() 303 cputype = CPU_TYPE_X86_64; in map_image_aboard() 307 arch.cputype = ntohl(arch_be->cputype); in map_image_aboard() 311 if (arch.cputype == cputype) { in map_image_aboard()
|
/external/ImageMagick/m4/ |
D | ax_gcc_archflag.m4 | 166 …cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /va… 167 …cputype=`echo "$cputype" | tr -d ' -' | $SED 's/SPARCIIi/SPARCII/' |tr $as_cr_LETTERS $as_cr_lette… 168 case $cputype in 189 …cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | $SED 's/ //g') ; /usr/… 190 cputype=`echo $cputype | $SED -e 's/ppc//g;s/ *//g'` 191 case $cputype in 193 *740[[0-9]]*) ax_gcc_arch="$cputype 7400 G4" ;; 194 *74[[4-5]][[0-9]]*) ax_gcc_arch="$cputype 7450 G4" ;; 195 *74[[0-9]][[0-9]]*) ax_gcc_arch="$cputype G4" ;; 199 603ev|8240) ax_gcc_arch="$cputype 603e 603";; [all …]
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-universal-x86_64.i386.test | 36 FAT: cputype CPU_TYPE_X86_64 43 FAT: cputype CPU_TYPE_I386 54 NON-VERBOSE: cputype 16777223 61 NON-VERBOSE: cputype 7
|
D | macho-private-headers.test | 28 CHECK: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags 124 EXE: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags 448 FATi386: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags 452 NON_VERBOSE: magic cputype cpusubtype caps filetype ncmds sizeofcmds flags
|
/external/llvm/include/llvm/Object/ |
D | MachOUniversal.h | 58 return Header.cputype; in getCPUType() 60 return Header64.cputype; in getCPUType() 95 MachOObjectFile::getArchTriple(Header.cputype, Header.cpusubtype); in getArchTypeName() 99 MachOObjectFile::getArchTriple(Header64.cputype, in getArchTypeName()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCMachObjectWriter.h | 29 const uint32_t CPUType; variable 53 uint32_t getCPUType() const { return CPUType; } in getCPUType() 144 uint32_t CPUType = TargetObjectWriter->getCPUType() & in isARM() local 146 return CPUType == object::mach::CTM_ARM; in isARM()
|
/external/llvm/include/llvm/MC/ |
D | MCMachObjectWriter.h | 28 const uint32_t CPUType; variable 54 uint32_t getCPUType() const { return CPUType; } in getCPUType() 156 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local 157 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
|
/external/autotest/client/site_tests/hardware_MemoryTotalSize/ |
D | hardware_MemoryTotalSize.py | 25 cpuType = utils.get_cpu_arch() 27 if cpuType == "arm":
|
/external/libunwind_llvm/src/ |
D | libunwind.cpp | 86 switch (as->cpuType) { in unw_init_remote_thread() 119 as->cpuType = CPU_TYPE_X86_64; in unw_create_addr_space_for_task() 124 as->cpuType = CPU_TYPE_I386; in unw_create_addr_space_for_task() 135 switch (asp->cpuType) { in unw_destroy_addr_space()
|
/external/llvm/test/tools/llvm-readobj/ |
D | macho-universal-x86_64.i386.test | 18 MULTIHEADER: CpuType: X86-64 (0x1000007) 37 MULTIHEADER: CpuType: X86 (0x7) 155 MULTIHEADER-ARCHIVE: CpuType: X86-64 (0x1000007) 171 MULTIHEADER-ARCHIVE: CpuType: X86 (0x7)
|
D | file-headers.test | 143 MACHO32-NEXT: CpuType: X86 (0x7) 159 MACHO64-NEXT: CpuType: X86-64 (0x1000007) 176 MACHO-PPC-NEXT: CpuType: PowerPC (0x12) 192 MACHO-PPC64-NEXT: CpuType: PowerPC64 (0x1000012) 209 MACHO-ARM-NEXT: CpuType: Arm (0xC)
|
/external/llvm/include/llvm/Support/ |
D | MachO.h | 494 uint32_t cputype; member 504 uint32_t cputype; member 889 uint32_t cputype; member 897 uint32_t cputype; member 969 sys::swapByteOrder(mh.cputype); in swapStruct() 977 sys::swapByteOrder(mh.cputype); in swapStruct() 987 sys::swapByteOrder(mh.cputype); in swapStruct() 997 sys::swapByteOrder(H.cputype); in swapStruct() 1348 // Constants for the cputype field. 1349 enum CPUType { enum
|
/external/autotest/client/site_tests/desktopui_GmailLatency/ |
D | desktopui_GmailLatency.py | 28 cpuType = utils.get_cpu_arch() 30 if cpuType == "arm":
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 43 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, in ARMMachObjectWriter() argument 45 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype, in ARMMachObjectWriter() 382 uint32_t CPUType, in createARMMachObjectWriter() argument 385 CPUType, in createARMMachObjectWriter()
|
/external/google-breakpad/src/common/mac/ |
D | macho_walker.cc | 89 valid_cpu_type = arch->cputype; in WalkHeader() 161 if (cpu_type != header.cputype || in FindHeader() 190 if (arch.cputype == cpu_type && in FindHeader()
|
D | dump_syms.mm | 205 arch_set = SetArchitecture(arch_info->cputype, arch_info->cpusubtype); 213 cpu_type_t cpu_type = selected_object_file_->cputype; 474 if (!SetArchitecture(local_arch->cputype, local_arch->cpusubtype)) { 491 selected_object_file_->cputype, selected_object_file_->cpusubtype); 526 selected_object_file_->cputype,
|
D | macho_utilities.cc | 65 mh->cputype = ByteSwap(mh->cputype); in breakpad_swap_mach_header_64()
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
D | PPCMachObjectWriter.cpp | 40 PPCMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in PPCMachObjectWriter() argument 41 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in PPCMachObjectWriter() 378 bool Is64Bit, uint32_t CPUType, in createPPCMachObjectWriter() argument 381 new PPCMachObjectWriter(Is64Bit, CPUType, CPUSubtype), OS, in createPPCMachObjectWriter()
|
/external/autotest/client/site_tests/platform_MemCheck/ |
D | platform_MemCheck.py | 30 cpuType = utils.get_cpu_arch() 33 if cpuType == "arm":
|