Home | History | Annotate | Download | only in bfd

Lines Matching defs:reloc_entry

1798   int reloc_entry;
1830 reloc_entry = r_index << 4 | r_type | r_pcrel;
1832 PUT_WORD (abfd, reloc_entry, natptr);
1894 int reloc_entry;
1898 reloc_entry = GET_WORD (abfd, (void *) bytes);
1900 r_pcrel = reloc_entry & RELFLG;
1905 if ((reloc_entry & RTYPE) == RABS)
1908 r_index = RINDEX (reloc_entry);
1912 r_extern = (reloc_entry & RTYPE) == REXT;
3390 int reloc_entry;
3392 reloc_entry = GET_WORD (input_bfd, (void *) rel);
3393 if (reloc_entry == 0)
3399 r_index = (reloc_entry & RIDXMASK) >> 4;
3400 r_type = reloc_entry & RTYPE;
3401 r_pcrel = reloc_entry & RELFLG;
3493 reloc_entry = GET_WORD (input_bfd, rel);
3494 reloc_entry &= RIDXMASK;
3495 reloc_entry |= r_index << 4;
3496 PUT_WORD (input_bfd, reloc_entry, rel);