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

123

/external/pixman/pixman/
H A Dpixman-arm-common.h53 #define PIXMAN_ARM_BIND_FAST_PATH_SRC_DST(cputype, name, \
57 pixman_composite_##name##_asm_##cputype (int32_t w, \
65 cputype##_composite_##name (pixman_implementation_t *imp, \
78 pixman_composite_##name##_asm_##cputype (width, height, \
83 #define PIXMAN_ARM_BIND_FAST_PATH_N_DST(flags, cputype, name, \
86 pixman_composite_##name##_asm_##cputype (int32_t w, \
93 cputype##_composite_##name (pixman_implementation_t *imp, \
110 pixman_composite_##name##_asm_##cputype (width, height, \
115 #define PIXMAN_ARM_BIND_FAST_PATH_N_MASK_DST(flags, cputype, name, \
119 pixman_composite_##name##_asm_##cputype (int32_
[all...]
/external/chromium_org/chrome/service/net/
H A Dservice_url_request_context_getter.cc42 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/valgrind/main/coregrind/
H A Dlauncher-darwin.c58 cpu_type_t cputype; member in struct:__anon32393
70 static const char *name_for_cputype(cpu_type_t cputype) argument
74 if (valid_archs[i].cputype == cputype) {
129 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype) argument
135 if (ntohl(fa[i].cputype) == cputype) return 1;
162 return name_for_cputype(mh->cputype);
164 return name_for_cputype(OSSwapInt32(mh->cputype));
177 return name_for_cputype(ntohl(fa->cputype));
[all...]
H A Dfixup_macho_loadcmds.c273 Int cputype; local
275 cputype = CPU_TYPE_X86;
277 cputype = CPU_TYPE_X86_64;
281 arch.cputype = ntohl(arch_be->cputype);
285 if (arch.cputype == cputype) {
/external/chromium_org/build/mac/
H A Dchange_mach_o_flags.py146 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/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.h31 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);
H A DMachVMMemory.cpp340 MachVMMemory::GetMemorySizes(task_t task, cpu_type_t cputype, nub_process_t pid, mach_vm_size_t &rprvt, mach_vm_size_t &vprvt) argument
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) argument
528 GetMemorySizes(task, cputype, pid, rprvt, vprvt);
/external/chromium_org/content/common/
H A Duser_agent.cc73 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/
H A DMachOUniversal.h55 uint32_t getCPUType() const { return Header.cputype; }
57 Triple T = MachOObjectFile::getArch(Header.cputype, Header.cpusubtype);
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.h229 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/
H A DHost.cpp305 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, cpusubtyp
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c199 Int cputype = CPU_TYPE_POWERPC; local
201 Int cputype = CPU_TYPE_POWERPC64;
203 Int cputype = CPU_TYPE_X86;
205 Int cputype = CPU_TYPE_X86_64;
213 arch.cputype = VG_(ntohl)(arch_be.cputype);
217 if (arch.cputype == cputype) {
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c738 arch.cputype, (ULong)arch_offset);
742 arch.cputype = VG_(ntohl)(arch.cputype);
747 if (arch.cputype == good_arch) {
/external/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp153 header.cputype = llvm::ByteSwap_32(header.cputype);
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dobj_int_extract.c87 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/
H A Dobj_int_extract.c87 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/
H A DObjectContainerUniversalMachO.cpp201 arch.SetArchitecture (eArchTypeMachO, m_fat_archs[idx].cputype, m_fat_archs[idx].cpusubtype);
/external/llvm/lib/Object/
H A DMachOUniversal.cpp36 sys::swapByteOrder(H.cputype);
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp3897 uint32_t cputype, is_64_bit_capable; local
3898 size_t len = sizeof(cputype);
3900 if (::sysctlbyname("hw.cputype", &cputype, &len, NULL, 0) == 0)
3905 if (is_64_bit_capable && ((cputype & CPU_ARCH_ABI64) == 0))
3908 cputype |= CPU_ARCH_ABI64;
3912 strm << "cputype:" << std::dec << cputype << ';'; local
3920 cputype == CPU_TYPE_X86_64 &&
3930 if (cputype
4006 cpu_type_t cputype = DNBProcessGetCPUType (pid); local
4015 rep << "cputype:" << std::hex << cputype << ";"; local
[all...]
/external/lldb/source/Host/macosx/
H A DSymbols.cpp74 const uint32_t cputype = data.GetU32(&data_offset); // cpu specifier local
84 ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype);
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp524 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)
1705 const bool is_arm = (m_header.cputype == llvm::MachO::CPUTypeARM);
1805 ArchSpec header_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype);
3671 ArchSpec header_arch(eArchTypeMachO, m_header.cputype, m_header.cpusubtype);
3850 switch (m_header.cputype)
[all...]
/external/llvm/include/llvm/Support/
H A DMachO.h532 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.
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp414 header.cputype = llvm::ByteSwap_32(header.cputype);
437 ArchSpec kernel_arch (eArchTypeMachO, header.cputype, header.cpusubtype);
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp422 T = MachOObjectFile::getArch(H_64.cputype, H_64.cpusubtype);
425 T = MachOObjectFile::getArch(H.cputype, H.cpusubtype);
/external/qemu-pc-bios/bochs/
H A Dconfig.guess1085 # "uname -m" is not consistent, so use $cputype instead. 386
1088 if test "$cputype" = "386"; then
1091 UNAME_MACHINE="$cputype"

Completed in 759 milliseconds

123