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;
3397 int reloc_entry;
3399 reloc_entry = GET_WORD (input_bfd, (void *) rel);
3400 if (reloc_entry == 0)
3406 r_index = (reloc_entry & RIDXMASK) >> 4;
3407 r_type = reloc_entry & RTYPE;
3408 r_pcrel = reloc_entry & RELFLG;
3500 reloc_entry = GET_WORD (input_bfd, rel);
3501 reloc_entry &= RIDXMASK;
3502 reloc_entry |= r_index << 4;
3503 PUT_WORD (input_bfd, reloc_entry, rel);