Home | History | Annotate | Download | only in bfd

Lines Matching defs:reloc_entry

1695   int reloc_entry;
1727 reloc_entry = r_index << 4 | r_type | r_pcrel;
1729 PUT_WORD (abfd, reloc_entry, natptr);
1788 int reloc_entry;
1792 reloc_entry = GET_WORD (abfd, (void *) bytes);
1794 r_pcrel = reloc_entry & RELFLG;
1799 if ((reloc_entry & RTYPE) == RABS)
1802 r_index = RINDEX (reloc_entry);
1806 r_extern = (reloc_entry & RTYPE) == REXT;
3279 int reloc_entry;
3281 reloc_entry = GET_WORD (input_bfd, (void *) rel);
3282 if (reloc_entry == 0)
3288 r_index = (reloc_entry & RIDXMASK) >> 4;
3289 r_type = reloc_entry & RTYPE;
3290 r_pcrel = reloc_entry & RELFLG;
3376 reloc_entry = GET_WORD (input_bfd, rel);
3377 reloc_entry &= RIDXMASK;
3378 reloc_entry |= r_index << 4;
3379 PUT_WORD (input_bfd, reloc_entry, rel);