Lines Matching refs:octets
585 bfd_size_type octets = reloc_entry->address * bfd_octets_per_byte (abfd); in bfd_perform_relocation() local
883 char x = bfd_get_8 (abfd, (char *) data + octets); in bfd_perform_relocation()
885 bfd_put_8 (abfd, x, (unsigned char *) data + octets); in bfd_perform_relocation()
891 short x = bfd_get_16 (abfd, (bfd_byte *) data + octets); in bfd_perform_relocation()
893 bfd_put_16 (abfd, (bfd_vma) x, (unsigned char *) data + octets); in bfd_perform_relocation()
898 long x = bfd_get_32 (abfd, (bfd_byte *) data + octets); in bfd_perform_relocation()
900 bfd_put_32 (abfd, (bfd_vma) x, (bfd_byte *) data + octets); in bfd_perform_relocation()
905 long x = bfd_get_32 (abfd, (bfd_byte *) data + octets); in bfd_perform_relocation()
908 bfd_put_32 (abfd, (bfd_vma) x, (bfd_byte *) data + octets); in bfd_perform_relocation()
914 long x = bfd_get_16 (abfd, (bfd_byte *) data + octets); in bfd_perform_relocation()
917 bfd_put_16 (abfd, (bfd_vma) x, (bfd_byte *) data + octets); in bfd_perform_relocation()
928 bfd_vma x = bfd_get_64 (abfd, (bfd_byte *) data + octets); in bfd_perform_relocation()
930 bfd_put_64 (abfd, x, (bfd_byte *) data + octets); in bfd_perform_relocation()
975 bfd_size_type octets = reloc_entry->address * bfd_octets_per_byte (abfd); in bfd_install_relocation() local
1258 data = (bfd_byte *) data_start + (octets - data_start_offset); in bfd_install_relocation()