Searched refs:relbase (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/usr.sbin/kldxref/
H A Def_sparc64.c40 * Apply relocations to the values we got from the file. `relbase' is the
45 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
54 if (relbase + a->r_offset >= dataoff && relbase + a->r_offset <
58 w = a->r_addend + relbase;
59 memcpy((u_char *)dest + (relbase + a->r_offset -
H A Def_nop.c37 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
H A Def_i386.c41 * Apply relocations to the values we got from the file. `relbase' is the
46 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
58 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
65 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
82 addr = (Elf_Addr)addend + relbase;
H A Def_aarch64.c42 * Apply relocations to the values obtained from the file. `relbase' is the
47 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
68 *where = relbase + addend;
H A Def_powerpc.c44 * Apply relocations to the values obtained from the file. `relbase' is the
49 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
70 *where = relbase + addend;
H A Def_amd64.c41 * Apply relocations to the values we got from the file. `relbase' is the
46 ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase, argument
59 where = (Elf_Addr *)(dest + relbase + rel->r_offset - dataoff);
66 where = (Elf_Addr *)(dest + relbase + rela->r_offset - dataoff);
110 addr = (Elf_Addr)addend + relbase;
H A Def.h70 Elf_Off relbase, Elf_Off dataoff, size_t len, void *dest);
/freebsd-11-stable/stand/common/
H A Dreloc_elf.c46 * Apply a single intra-module relocation to the data. `relbase' is the
53 int reltype, Elf_Addr relbase, Elf_Addr dataaddr, void *data, size_t len)
62 if (relbase + a->r_offset >= dataaddr &&
63 relbase + a->r_offset < dataaddr + len) {
66 w = relbase + a->r_addend;
67 bcopy(&w, (u_char *)data + (relbase +
90 where = (Elf_Addr *)((char *)data + relbase + rel->r_offset -
99 where = (Elf_Addr *)((char *)data + relbase + rela->r_offset -
129 addr = (Elf_Addr)addend + relbase;
151 where = (Elf_Addr *)((char *)data + relbase
52 reloc(struct elf_file *ef, symaddr_fn *symaddr, const void *reldata, int reltype, Elf_Addr relbase, Elf_Addr dataaddr, void *data, size_t len) argument
[all...]
H A Dbootstrap.h263 const void *reldata, int reltype, Elf_Addr relbase,

Completed in 69 milliseconds