Home
last modified time | relevance | path

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

/freebsd/sys/x86/include/
H A Delf.h48 #define ELF_MACHINE_OK(x) ((x) == EM_386 || (x) == EM_486) macro
105 #define ELF_MACHINE_OK(x) ((x) == EM_X86_64) macro
/freebsd/sys/powerpc/include/
H A Delf.h53 #define ELF_MACHINE_OK(x) ((x) == EM_PPC64) macro
57 #define ELF_MACHINE_OK(x) ((x) == EM_PPC) macro
/freebsd/sys/riscv/include/
H A Delf.h64 #define ELF_MACHINE_OK(x) ((x) == (ELF_ARCH)) macro
/freebsd/sys/arm/include/
H A Delf.h56 #define ELF_MACHINE_OK(x) ((x) == EM_ARM) macro
/freebsd/sys/arm64/include/
H A Delf.h75 #define ELF_MACHINE_OK(x) ((x) == (ELF_ARCH)) macro
/freebsd/usr.bin/gcore/
H A Delfcore.c149 if (!ELF_MACHINE_OK(machine)) in elf_ident()