Home
last modified time | relevance | path

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

/xnu-8019.80.24/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.c830 if (((cpu_type_t)(header->cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) in parse_machfile()
3046 cputype = (cputype & CPU_ARCH_MASK) | (cpu_type() & ~CPU_ARCH_MASK); in load_dylinker()
H A Dkern_sysctl.c3678 ret = cpu_type() & ~CPU_ARCH_MASK; in fetch_process_cputype()
3703 if ((proc_cputype & ~CPU_ARCH_MASK) != (cpu_type() & ~CPU_ARCH_MASK)) { in sysctl_sysctl_native()
H A Dkern_exit.c579 cputype = cpu_type() & ~CPU_ARCH_MASK; in populate_corpse_crashinfo()
H A Dkern_exec.c1091 if (binary_match(CPU_ARCH_MASK, pref, subpref, in exec_mach_imgact()
/xnu-8019.80.24/osfmk/mach/
H A Dmachine.h130 #define CPU_ARCH_MASK 0xff000000 /* mask for architecture bits */ macro