Home | History | Annotate | Download | only in bfd

Lines Matching defs:natptr

1948 				 struct reloc_std_external *natptr)
1958 PUT_WORD (abfd, g->address, natptr->r_address);
2007 natptr->r_index[0] = r_index >> 16;
2008 natptr->r_index[1] = r_index >> 8;
2009 natptr->r_index[2] = r_index;
2010 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
2019 natptr->r_index[2] = r_index >> 16;
2020 natptr->r_index[1] = r_index >> 8;
2021 natptr->r_index[0] = r_index;
2022 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
2040 struct reloc_ext_external *natptr)
2049 PUT_WORD (abfd, g->address, natptr->r_address);
2087 natptr->r_index[0] = r_index >> 16;
2088 natptr->r_index[1] = r_index >> 8;
2089 natptr->r_index[2] = r_index;
2090 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0)
2095 natptr->r_index[2] = r_index >> 16;
2096 natptr->r_index[1] = r_index >> 8;
2097 natptr->r_index[0] = r_index;
2098 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0)
2102 PUT_WORD (abfd, r_addend, natptr->r_addend);
2376 unsigned char *native, *natptr;
2395 for (natptr = native;
2397 --count, natptr += each_size, ++generic)
2399 (struct reloc_ext_external *) natptr);
2403 for (natptr = native;
2405 --count, natptr += each_size, ++generic)
2407 (struct reloc_std_external *) natptr);