Home | History | Annotate | Download | only in bfd

Lines Matching refs:rel

145 		  struct reloc_std_external *rel,
153 *r_index = ((rel->r_index[2] << 16)
154 | (rel->r_index[1] << 8)
155 | rel->r_index[0] );
156 *r_extern = (0 != (rel->r_type[0] & RELOC_STD_BITS_EXTERN_LITTLE));
157 *r_pcrel = (0 != (rel->r_type[0] & RELOC_STD_BITS_PCREL_LITTLE));
158 r_length = ((rel->r_type[0] & RELOC_STD_BITS_LENGTH_LITTLE)
160 r_ns32k_type = ((rel->r_type[0] & RELOC_STD_BITS_NS32K_TYPE_LITTLE)
165 #define MY_reloc_howto(BFD, REL, IN, EX, PC) \
166 MY (reloc_howto) (BFD, REL, &IN, &EX, &PC)