Lines Matching defs:addend
153 output file) adjusting the reloc addend as necessary.
169 section, which means that the addend must be adjusted
205 bfd_signed_vma addend;
261 /* Get the addend from the instruction and apply it. */
262 addend = bfd_get (howto->bitsize, input_bfd,
266 if ((addend & (((~howto->src_mask) >> 1) & howto->src_mask)) != 0)
267 addend -= (((~howto->src_mask) >> 1) & howto->src_mask) << 1;
268 relocation += addend;
282 addend = bfd_get (howto->bitsize, input_bfd, where);
283 relocation += addend;
300 /* Get the addend. The upper and lower 32 bits are split.
302 addend = bfd_get_32 (input_bfd, where + 4);
303 addend |= (bfd_get_32 (input_bfd, where + 12) << 32);
305 relocation += addend;
401 || reloc_entry->addend == 0))
411 reloc_entry->addend -= symbol->section->output_section->vma;
427 That is, just install the addend and do not include the value of
429 relocation = reloc_entry->addend;