Searched refs:hi16_value (Results 1 – 2 of 2) sorted by relevance
/toolchain/binutils/binutils-2.27/bfd/ |
D | elf32-score7.c | 228 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local 230 hi16_value = bfd_get_32 (abfd, hi16_rel_addr); in score_elf_lo16_reloc() 231 hi16_offset = ((((hi16_value >> 16) & 0x3) << 15) | (hi16_value & 0x7fff)) >> 1; in score_elf_lo16_reloc() 239 hi16_value = (hi16_value & ~0x37fff) | (hi16_offset & 0x7fff) | ((hi16_offset << 1) & 0x30000); in score_elf_lo16_reloc() 240 bfd_put_32 (abfd, hi16_value, hi16_rel_addr); in score_elf_lo16_reloc() 522 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local 524 hi16_value = bfd_get_32 (abfd, hi16_rel_addr); in score_elf_got_lo16_reloc() 525 hi16_offset = ((((hi16_value >> 16) & 0x3) << 15) | (hi16_value & 0x7fff)) >> 1; in score_elf_got_lo16_reloc() 536 hi16_value = (hi16_value & ~0x37fff) | (hi16_offset & 0x7fff) | ((hi16_offset << 1) & 0x30000); in score_elf_got_lo16_reloc() 537 bfd_put_32 (abfd, hi16_value, hi16_rel_addr); in score_elf_got_lo16_reloc() [all …]
|
D | elf32-score.c | 329 unsigned long hi16_offset, hi16_value, uvalue; in score_elf_lo16_reloc() local 331 hi16_value = score_bfd_get_32 (abfd, hi16_rel_addr); in score_elf_lo16_reloc() 332 hi16_offset = ((((hi16_value >> 16) & 0x3) << 15) | (hi16_value & 0x7fff)) >> 1; in score_elf_lo16_reloc() 340 hi16_value = (hi16_value & ~0x37fff) | (hi16_offset & 0x7fff) | ((hi16_offset << 1) & 0x30000); in score_elf_lo16_reloc() 341 score_bfd_put_32 (abfd, hi16_value, hi16_rel_addr); in score_elf_lo16_reloc() 621 signed long hi16_offset, hi16_value, uvalue; in score_elf_got_lo16_reloc() local 623 hi16_value = score_bfd_get_32 (abfd, hi16_rel_addr); in score_elf_got_lo16_reloc() 624 hi16_offset = ((((hi16_value >> 16) & 0x3) << 15) | (hi16_value & 0x7fff)) >> 1; in score_elf_got_lo16_reloc() 635 hi16_value = (hi16_value & ~0x37fff) | (hi16_offset & 0x7fff) | ((hi16_offset << 1) & 0x30000); in score_elf_got_lo16_reloc() 636 score_bfd_put_32 (abfd, hi16_value, hi16_rel_addr); in score_elf_got_lo16_reloc() [all …]
|