Home
last modified time | relevance | path

Searched refs:CPU_ARCH_MASK (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.81.4/bsd/kern/
H A Dmach_fat.c178 …load_return_t ret = fatfile_getarch(data_ptr, data_size, primary_type, CPU_ARCH_MASK, CPU_SUBTYPE_… in fatfile_getbestarch()
223 …turn fatfile_getarch(data_ptr, data_size, (archbits & CPU_ARCH_MASK) | (cpu_type() & ~CPU_ARCH_MAS… in fatfile_getarch_with_bits()
H A Dmach_loader.c1133 if (((cpu_type_t)(header->cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) in parse_machfile()
3263 cputype = (cputype & CPU_ARCH_MASK) | (cpu_type() & ~CPU_ARCH_MASK); in load_dylinker()
H A Dkern_exit.c604 cputype = cpu_type() & ~CPU_ARCH_MASK; in populate_corpse_crashinfo()
1255 cpu_type_t cputype = cpu_type() & ~CPU_ARCH_MASK; in current_thread_collect_backtrace_info()
H A Dkern_sysctl.c4216 ret = cpu_type() & ~CPU_ARCH_MASK;
4254 if ((proc_cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) {
H A Dkern_exec.c1850 if (binary_match(CPU_ARCH_MASK, pref, subpref, in exec_mach_imgact()
/xnu-12377.81.4/osfmk/mach/
H A Dmachine.h130 #define CPU_ARCH_MASK 0xff000000 /* mask for architecture bits */ macro