HomeSort by relevance Sort by last modified time
    Searched refs:cpusubtype (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/build/mac/
change_mach_o_flags.py 146 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \
148 return magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags
160 cputype, cpusubtype, offset, size, align = struct.unpack('>5I', bytes)
161 return cputype, cpusubtype, offset, size, align
196 magic, cputype, cpusubtype, filetype, ncmds, sizeofcmds, flags = \
232 cputype, cpusubtype, offset, size, align = ReadFatArch(file)
  /external/llvm/include/llvm/Object/
MachOUniversal.h 57 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype);
  /external/lldb/source/Host/common/
Host.cpp 305 uint32_t cputype, cpusubtype; local
313 len = sizeof (cpusubtype);
314 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) != 0)
315 cpusubtype = CPU_TYPE_ANY;
327 if (cpusubtype == CPU_SUBTYPE_486)
328 cpusubtype = CPU_SUBTYPE_I386_ALL;
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);
    [all...]
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 154 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype);
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.cpp 682 // cases using a field in a sysctl. For now we are using "hw.cpusubtype"
698 uint32_t cpusubtype; local
699 len = sizeof(cpusubtype);
701 if (::sysctlbyname("hw.cpusubtype", &cpusubtype, &len, NULL, 0) == 0)
703 DNBLogThreadedIf(LOG_THREAD, "hw.cpusubtype=%d", cpusubtype);
704 if (cpusubtype == CPU_SUBTYPE_ARM_V7)
741 // cases using a field in a sysctl. For now we are using "hw.cpusubtype"
754 uint32_t cpusubtype; local
    [all...]
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 282 arch.cpusubtype = ntohl(arch_be->cpusubtype);
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.h 245 return lldb_private::ArchSpec (lldb_private::eArchTypeMachO, header.cputype, header.cpusubtype);
  /external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
ObjectContainerUniversalMachO.cpp 201 arch.SetArchitecture (eArchTypeMachO, m_fat_archs[idx].cputype, m_fat_archs[idx].cpusubtype);
  /external/llvm/lib/Object/
MachOUniversal.cpp 37 sys::swapByteOrder(H.cpusubtype);
MachOObjectFile.cpp 112 sys::swapByteOrder(H.cpusubtype);
123 sys::swapByteOrder(H.cpusubtype);
    [all...]
  /external/lldb/source/Host/macosx/
Symbols.cpp 75 const uint32_t cpusubtype = data.GetU32(&data_offset); // machine specifier local
84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype);
    [all...]
  /external/valgrind/main/coregrind/m_ume/
macho.c 743 arch.cpusubtype = VG_(ntohl)(arch.cpusubtype);
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 3915 uint32_t cpusubtype; local
3924 strm << "cpusubtype:" << std::dec << cpusubtype << ';'; local
4018 uint32_t cpusubtype; local
4027 rep << "cpusubtype:" << std::hex << cpusubtype << ';'; local
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 533 uint32_t cpusubtype; member in struct:llvm::MachO::mach_header
543 uint32_t cpusubtype; member in struct:llvm::MachO::mach_header_64
921 uint32_t cpusubtype; member in struct:llvm::MachO::fat_arch
1017 // Capability bits used in the definition of cpusubtype.
1025 // Constants for the cpusubtype field.
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 415 header.cpusubtype = llvm::ByteSwap_32(header.cpusubtype);
437 ArchSpec kernel_arch (eArchTypeMachO, header.cputype, header.cpusubtype);
    [all...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 422 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
425 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 214 arch.cpusubtype = VG_(ntohl)(arch_be.cpusubtype);
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 386 outs() << "('cpusubtype', " << Header.cpusubtype << ")\n";
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 787 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
790 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp 525 header.cpusubtype);
725 ArchSpec mach_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype);
    [all...]
  /external/chromium_org/v8/src/
gdb-jit.cc 497 uint32_t cpusubtype; member in struct:v8::BASE_EMBEDDED::MachOHeader
540 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL
544 header->cpusubtype = 3; // CPU_SUBTYPE_I386_ALL
    [all...]
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 377 cpusubtype = f.uint32()
    [all...]

Completed in 903 milliseconds