Home | History | Annotate | Download | only in bfd

Lines Matching refs:natptr

1944 				 struct reloc_std_external *natptr)
1954 PUT_WORD (abfd, g->address, natptr->r_address);
2003 natptr->r_index[0] = r_index >> 16;
2004 natptr->r_index[1] = r_index >> 8;
2005 natptr->r_index[2] = r_index;
2006 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_BIG : 0)
2015 natptr->r_index[2] = r_index >> 16;
2016 natptr->r_index[1] = r_index >> 8;
2017 natptr->r_index[0] = r_index;
2018 natptr->r_type[0] = ((r_extern ? RELOC_STD_BITS_EXTERN_LITTLE : 0)
2036 struct reloc_ext_external *natptr)
2045 PUT_WORD (abfd, g->address, natptr->r_address);
2083 natptr->r_index[0] = r_index >> 16;
2084 natptr->r_index[1] = r_index >> 8;
2085 natptr->r_index[2] = r_index;
2086 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_BIG : 0)
2091 natptr->r_index[2] = r_index >> 16;
2092 natptr->r_index[1] = r_index >> 8;
2093 natptr->r_index[0] = r_index;
2094 natptr->r_type[0] = ((r_extern ? RELOC_EXT_BITS_EXTERN_LITTLE : 0)
2098 PUT_WORD (abfd, r_addend, natptr->r_addend);
2372 unsigned char *native, *natptr;
2391 for (natptr = native;
2393 --count, natptr += each_size, ++generic)
2395 (struct reloc_ext_external *) natptr);
2399 for (natptr = native;
2401 --count, natptr += each_size, ++generic)
2403 (struct reloc_std_external *) natptr);