Home | History | Annotate | Download | only in source

Lines Matching refs:cputype

3897     uint32_t cputype, is_64_bit_capable;
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 << ';';
3920 cputype == CPU_TYPE_X86_64 &&
3930 if (cputype == CPU_TYPE_ARM)
4006 cpu_type_t cputype = DNBProcessGetCPUType (pid);
4007 if (cputype == 0)
4010 cputype = best_guess_cpu_type();
4013 if (cputype != 0)
4015 rep << "cputype:" << std::hex << cputype << ";";
4022 if (cputype == CPU_TYPE_X86_64 && cpusubtype == CPU_SUBTYPE_486)
4033 if (cputype == CPU_TYPE_ARM)