Searched refs:e_entry (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-13-stable/stand/i386/libi386/
H A Delf64_freebsd.c109 entry_lo = ehdr->e_entry & 0xffffffff;
110 entry_hi = (ehdr->e_entry >> 32) & 0xffffffff;
112 printf("Start @ %#llx ...\n", ehdr->e_entry);
H A Delf32_freebsd.c68 entry = ehdr->e_entry & 0xffffff;
/freebsd-13-stable/stand/powerpc/ofw/
H A Dppc64_elf_freebsd.c83 entry = e->e_entry;
85 entry = *(uint64_t *)(intptr_t)e->e_entry;
H A Delf_freebsd.c82 entry = e->e_entry;
/freebsd-13-stable/stand/powerpc/uboot/
H A Dppc64_elf_freebsd.c83 entry = (void (*)(void*))(intptr_t)e->e_entry;
85 entry = *(void (*)(void*))(uint64_t *)(intptr_t)e->e_entry;
/freebsd-13-stable/contrib/elftoolchain/libelf/
H A Dgelf_ehdr.c72 d->e_entry = eh32->e_entry;
155 LIBELF_COPY_U32(eh32, s, e_entry);
/freebsd-13-stable/stand/powerpc/kboot/
H A Dppc64_elf_freebsd.c118 entry = e->e_entry;
120 archsw.arch_copyout(e->e_entry + elf64_relocation_offset,
/freebsd-13-stable/contrib/elftoolchain/elfcopy/
H A Dascii.c53 static void ihex_write_05(int ofd, uint64_t e_entry);
67 static void srec_write_Se(int ofd, uint64_t e_entry, int forceS3);
194 srec_write_Se(ofd, eh.e_entry, ecp->flags & SREC_FORCE_S3);
235 oeh.e_entry = 0;
371 oeh.e_entry = entry;
464 ihex_write_05(ofd, eh.e_entry);
504 oeh.e_entry = 0;
595 oeh.e_entry = entry;
820 srec_write_Se(int ofd, uint64_t e_entry, int forceS3) argument
824 if (e_entry >
969 ihex_write_05(int ofd, uint64_t e_entry) argument
[all...]
/freebsd-13-stable/stand/efi/loader/arch/arm/
H A Dexec.c78 entry = efi_translate(e->e_entry);
/freebsd-13-stable/stand/efi/loader/arch/i386/
H A Delf32_freebsd.c79 entry = ehdr->e_entry & 0xffffff;
/freebsd-13-stable/stand/efi/loader/arch/riscv/
H A Dexec.c64 entry = efi_translate(e->e_entry);
/freebsd-13-stable/stand/uboot/lib/
H A Delf_freebsd.c87 entry = (void *)e->e_entry;
/freebsd-13-stable/stand/efi/loader/arch/amd64/
H A Delf64_freebsd.c186 printf("Start @ 0x%lx ...\n", ehdr->e_entry);
198 ehdr->e_entry);
/freebsd-13-stable/stand/userboot/userboot/
H A Delf64_freebsd.c141 printf("Start @ %#"PRIx64" ...\n", ehdr->e_entry);
164 CALLBACK(exec, ehdr->e_entry);
H A Delf32_freebsd.c73 entry = ehdr->e_entry & 0xffffff;
/freebsd-13-stable/stand/mips/beri/loader/
H A Dexec.c94 entry = (void *)ehdr->e_entry;
/freebsd-13-stable/stand/efi/loader/arch/arm64/
H A Dexec.c114 entry = efi_translate(ehdr->e_entry);
/freebsd-13-stable/stand/common/
H A Dload_elf.c150 CONVERT_FIELD(b, e_entry, e); \
356 dest = (ehdr->e_entry & ~PAGE_MASK);
358 if ((ehdr->e_entry & ~PAGE_MASK) == 0) {
422 (uintmax_t)ehdr->e_entry);
529 ehdr->e_entry += off;
531 printf("Converted entry 0x%jx\n", (uintmax_t)ehdr->e_entry);
552 off -= ehdr->e_entry & ~PAGE_MASK;
553 ehdr->e_entry += off;
555 printf("ehdr->e_entry 0x%jx, va<->pa off %llx\n",
556 (uintmax_t)ehdr->e_entry, of
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h58 elf_addr e_entry; ///< Virtual address program entry point. member in struct:elf::ELFHeader
/freebsd-13-stable/sys/mips/mips/
H A Delf_trampoline.c129 entry_point = mkptr(eh->e_entry);
/freebsd-13-stable/sys/sys/
H A Delf32.h62 Elf32_Addr e_entry; /* Entry point. */ member in struct:__anon15799
H A Delf64.h71 Elf64_Addr e_entry; /* Entry point. */ member in struct:__anon15817
/freebsd-13-stable/contrib/file/src/
H A Dreadelf.h97 Elf32_Addr e_entry; /* Entry point */ member in struct:__anon753
114 Elf64_Addr e_entry; /* Entry point */ member in struct:__anon754
/freebsd-13-stable/libexec/rtld-elf/
H A Dmap_object.c300 if (hdr->e_entry != 0)
301 obj->entry = (caddr_t)(obj->relocbase + hdr->e_entry);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libctf/common/
H A Dctf_lib.c148 dst->e_entry = (Elf64_Addr)src->e_entry;

Completed in 205 milliseconds

123