HomeSort by relevance Sort by last modified time
    Searched refs:cputype (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/valgrind/coregrind/
launcher-darwin.c 58 cpu_type_t cputype; member in struct:__anon20159
74 static const char *name_for_cputype(cpu_type_t cputype)
78 if (valid_archs[i].cputype == cputype) {
133 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype)
139 if (ntohl(fa[i].cputype) == cputype) return 1;
166 return name_for_cputype(mh->cputype);
168 return name_for_cputype(OSSwapInt32(mh->cputype));
181 return name_for_cputype(ntohl(fa->cputype));
    [all...]
fixup_macho_loadcmds.c 298 Int cputype; local
300 cputype = CPU_TYPE_X86;
302 cputype = CPU_TYPE_X86_64;
306 arch.cputype = ntohl(arch_be->cputype);
310 if (arch.cputype == cputype) {
  /development/ndk/platforms/android-9/arch-mips/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
cpu-features.h 26 #define current_cpu_type() current_cpu_data.cputype
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-13/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-15/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-17/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
cpu-info.h 49 unsigned int cputype; member in struct:cpuinfo_mips
  /external/lldb/tools/debugserver/source/MacOSX/
MachVMMemory.h 31 nub_bool_t GetMemoryProfile(DNBProfileDataScanType scanType, task_t task, struct task_basic_info ti, cpu_type_t cputype, nub_process_t pid, vm_statistics_data_t &vm_stats, uint64_t &physical_memory, mach_vm_size_t &rprvt, mach_vm_size_t &rsize, mach_vm_size_t &vprvt, mach_vm_size_t &vsize, mach_vm_size_t &dirty_size, mach_vm_size_t &purgable, mach_vm_size_t &anonymous);
38 void GetMemorySizes(task_t task, cpu_type_t cputype, nub_process_t pid, mach_vm_size_t &rprvt, mach_vm_size_t &vprvt);
  /external/llvm/include/llvm/Object/
MachOUniversal.h 54 uint32_t getCPUType() const { return Header.cputype; }
60 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype);
  /external/google-breakpad/src/common/mac/
macho_utilities.cc 65 mh->cputype = ByteSwap(mh->cputype);
arch_utilities.cc 63 arm64->cputype = CPU_TYPE_ARM64;
macho_walker.cc 89 valid_cpu_type = arch->cputype;
161 if (cpu_type != header.cputype ||
190 if (arch.cputype == cpu_type &&
  /external/google-breakpad/src/tools/mac/dump_syms/
macho_dump.cc 148 file.cputype, file.cpusubtype);
165 if (!reader.Read(file_contents, file.cputype, file.cpusubtype)) {
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.h 229 if (header.cputype)
231 if (header.cputype & llvm::MachO::CPUArchABI64)
245 return lldb_private::ArchSpec (lldb_private::eArchTypeMachO, header.cputype, header.cpusubtype);
  /external/lldb/source/Host/common/
Host.cpp 305 uint32_t cputype, cpusubtype; local
307 size_t len = sizeof(cputype);
311 if (::sysctlbyname("hw.cputype", &cputype, &len, NULL, 0) == 0)
330 if (cputype & CPU_ARCH_ABI64)
333 g_host_arch_32.SetArchitecture (eArchTypeMachO, ~(CPU_ARCH_MASK) & cputype, cpusubtype);
334 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype);
339 g_host_arch_32.SetArchitecture (eArchTypeMachO, cputype, cpusubtype);
340 cputype |= CPU_ARCH_ABI64;
341 g_host_arch_64.SetArchitecture (eArchTypeMachO, cputype, cpusubtype)
    [all...]
  /external/google-breakpad/src/client/mac/handler/
breakpad_nlist_64.cc 235 fat_archs[i].cputype =
236 CFSwapInt32BigToHost(fat_archs[i].cputype);
249 if (fat_archs[i].cputype == cpu_type) {
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 198 Int cputype = CPU_TYPE_POWERPC; local
200 Int cputype = CPU_TYPE_POWERPC64BE;
202 Int cputype = CPU_TYPE_POWERPC64LE;
204 Int cputype = CPU_TYPE_X86;
206 Int cputype = CPU_TYPE_X86_64;
214 arch.cputype = VG_(ntohl)(arch_be.cputype);
218 if (arch.cputype == cputype) {
    [all...]

Completed in 3247 milliseconds

1 2 3 4 5