Home | History | Annotate | Download | only in binutils

Lines Matching refs:rloc

16281 	  unsigned char *rloc;
16349 rloc = start + rp->r_offset;
16350 if (!IN_RANGE (start, end, rloc, reloc_size))
16410 addend += byte_get (rloc, reloc_size) & 0x3f;
16412 addend += byte_get (rloc, reloc_size);
16421 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
16432 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
16433 byte_put (rloc, addend, reloc_size);
16436 byte_put (rloc, addend - sym->st_value, reloc_size);
16438 byte_put (rloc, addend + sym->st_value, reloc_size);