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

1 2 3

  /external/chromium_org/chrome/service/net/
service_url_request_context_getter.cc 42 std::string cputype; local
46 cputype.assign("i686 (x86_64)");
48 cputype.assign(unixinfo.machine);
65 cputype.c_str(), // e.g. i686
72 cputype.c_str() // e.g. i686
  /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)
  /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
  /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);
MachVMMemory.cpp 340 MachVMMemory::GetMemorySizes(task_t task, cpu_type_t cputype, nub_process_t pid, mach_vm_size_t &rprvt, mach_vm_size_t &vprvt)
359 if (InSharedRegion(addr, cputype))
516 MachVMMemory::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 &purgeable, mach_vm_size_t &anonymous)
528 GetMemorySizes(task, cputype, pid, rprvt, vprvt);
  /external/chromium_org/content/common/
user_agent.cc 73 std::string cputype; local
77 cputype.assign("i686 (x86_64)");
79 cputype.assign(unixinfo.machine);
141 cputype.c_str(), // e.g. i686
152 cputype.c_str() // e.g. i686
  /external/llvm/include/llvm/Object/
MachOUniversal.h 55 uint32_t getCPUType() const { return Header.cputype; }
57 Triple T = MachOObjectFile::getArch(Header.cputype, Header.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...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/lasat/
lasat.h 199 #define IS_LASAT_200() (current_cpu_data.cputype == CPU_R5000)
  /external/lldb/source/Plugins/Process/mach-core/
ProcessMachCore.cpp 153 header.cputype = llvm::ByteSwap_32(header.cputype);
  /external/chromium_org/third_party/libvpx/source/libvpx/build/make/
obj_int_extract.c 87 if (header.cputype == CPU_TYPE_ARM
88 || header.cputype == CPU_TYPE_X86) {
92 log_msg("Bad cputype for object file. Currently only tested for CPU_TYPE_[ARM|X86].\n");
96 if (header.cputype == CPU_TYPE_X86_64) {
100 log_msg("Bad cputype for object file. Currently only tested for CPU_TYPE_X86_64.\n");
  /external/libvpx/libvpx/build/make/
obj_int_extract.c 87 if (header.cputype == CPU_TYPE_ARM
88 || header.cputype == CPU_TYPE_X86) {
92 log_msg("Bad cputype for object file. Currently only tested for CPU_TYPE_[ARM|X86].\n");
96 if (header.cputype == CPU_TYPE_X86_64) {
100 log_msg("Bad cputype for object file. Currently only tested for CPU_TYPE_X86_64.\n");
  /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 36 sys::swapByteOrder(H.cputype);
133 static bool getCTMForArch(Triple::ArchType Arch, MachO::CPUType &CTM) {
147 MachO::CPUType CTM;
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 3897 uint32_t cputype, is_64_bit_capable; local
3912 strm << "cputype:" << std::dec << cputype << ';'; local
4006 cpu_type_t cputype = DNBProcessGetCPUType (pid); local
4015 rep << "cputype:" << std::hex << cputype << ";"; local
    [all...]
  /external/lldb/source/Host/macosx/
Symbols.cpp 74 const uint32_t cputype = data.GetU32(&data_offset); // cpu specifier local
84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/Mach-O/
ObjectFileMachO.cpp 524 header.cputype,
667 data.GetU32(data_offset_ptr, &header.cputype, 6);
723 m_data.GetU32(&offset, &m_header.cputype, 6);
725 ArchSpec mach_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype);
802 if (m_header.cputype == llvm::MachO::CPUTypeARM)
860 if (m_header.cputype == llvm::MachO::CPUTypeARM)
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 532 uint32_t cputype; member in struct:llvm::MachO::mach_header
542 uint32_t cputype; member in struct:llvm::MachO::mach_header_64
920 uint32_t cputype; member in struct:llvm::MachO::fat_arch
1001 // Constants for the cputype field.
1002 enum CPUType {
    [all...]
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.cpp 414 header.cputype = llvm::ByteSwap_32(header.cputype);
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/chromium_org/third_party/icu/source/
config.guess     [all...]
  /external/chromium_org/third_party/libevent/
config.guess     [all...]
  /external/chromium_org/third_party/libxslt/
config.guess     [all...]

Completed in 774 milliseconds

1 2 3