Home
last modified time | relevance | path

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

/freebsd-head/sys/x86/include/
HDelf.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-head/sys/powerpc/include/
HDelf.h53 #define ELF_MACHINE_OK(x) ((x) == EM_PPC64) macro
57 #define ELF_MACHINE_OK(x) ((x) == EM_PPC) macro
/freebsd-head/sys/riscv/include/
HDelf.h64 #define ELF_MACHINE_OK(x) ((x) == (ELF_ARCH)) macro
/freebsd-head/sys/arm/include/
HDelf.h56 #define ELF_MACHINE_OK(x) ((x) == EM_ARM) macro
/freebsd-head/sys/arm64/include/
HDelf.h75 #define ELF_MACHINE_OK(x) ((x) == (ELF_ARCH)) macro
/freebsd-head/usr.bin/gcore/
HDelfcore.c149 if (!ELF_MACHINE_OK(machine)) in elf_ident()