• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/modutils/

Lines Matching refs:rel

660 				      ElfW(RelM) *rel, ElfW(Addr) value);
854 ElfW(RelM) *rel, ElfW(Addr) v)
858 ElfW(Addr) *loc = (ElfW(Addr) *) (targsec->contents + rel->r_offset);
859 ElfW(Addr) dot = targsec->header.sh_addr + rel->r_offset;
879 switch (ELF_R_TYPE(rel->r_info)) {
1410 if (ELF_R_TYPE(rel->r_info) == R_390_PLT16DBL)
1419 if (ELF_R_TYPE(rel->r_info) == R_390_PLT32)
1421 else if (ELF_R_TYPE(rel->r_info) == R_390_PLT16DBL)
1446 if (ELF_R_TYPE(rel->r_info) == R_390_GOT12)
1448 else if (ELF_R_TYPE(rel->r_info) == R_390_GOT16)
1450 else if (ELF_R_TYPE(rel->r_info) == R_390_GOT32)
1484 *loc = f->baseaddr + rel->r_addend;
1488 *loc = got - dot + rel->r_addend;
1504 if (ELF_R_TYPE(rel->r_info) == R_SH_IMM_MEDLOW16)
1532 if (ELF_R_TYPE(rel->r_info) == R_SH_IMM_MEDLOW16_PCREL)
1621 printf("Warning: unhandled reloc %d\n",(int)ELF_R_TYPE(rel->r_info));
1632 for (pe = isym->pltent; pe != NULL && pe->addend != rel->r_addend;)
1714 *loc += isym->gotent.offset + rel->r_addend;
1729 static int arch_list_add(ElfW(RelM) *rel, struct arch_list_entry **list,
1735 if (pe->addend == rel->r_addend) {
1743 pe->addend = rel->r_addend;
1756 static int arch_single_init(ElfW(RelM) *rel, struct arch_single_entry *single,
1805 ElfW(RelM) *rel, *relend;
1818 rel = (ElfW(RelM) *) relsec->contents;
1819 relend = rel + (relsec->header.sh_size / sizeof(ElfW(RelM)));
1823 for (; rel < relend; ++rel) {
1824 extsym = &symtab[ELF_R_SYM(rel->r_info)];
1833 switch (ELF_R_TYPE(rel->r_info)) {
1904 rel, &intsym->gotent,
1914 rel, &intsym->pltent,
1918 rel, &intsym->pltent,
3190 ElfW(RelM) * rel, *relend;
3202 rel = (ElfW(RelM) *) relsec->contents;
3203 relend = rel + (relsec->header.sh_size / sizeof(ElfW(RelM)));
3207 for (; rel < relend; ++rel) {
3216 symndx = ELF_R_SYM(rel->r_info);
3243 value += rel->r_addend;
3248 (f, targsec, symsec, intsym, rel, value)
3264 (long) ELF_R_TYPE(rel->r_info),
3268 (long) ELF_R_TYPE(rel->r_info));