ElfW              167 src/unexelf.c  #ifndef ElfW
ElfW              185 src/unexelf.c  verify ((! TYPE_SIGNED (ElfW (Half))
ElfW              186 src/unexelf.c  	 || PTRDIFF_MIN <= TYPE_MINIMUM (ElfW (Half)))
ElfW              187 src/unexelf.c  	&& TYPE_MAXIMUM (ElfW (Half)) <= PTRDIFF_MAX);
ElfW              206 src/unexelf.c    (*(ElfW (Shdr) *) entry_address (old_section_h, n, old_file_h->e_shentsize))
ElfW              208 src/unexelf.c    (*(ElfW (Shdr) *) entry_address (new_section_h, n, new_file_h->e_shentsize))
ElfW              210 src/unexelf.c    (*(ElfW (Phdr) *) entry_address (old_program_h, n, old_file_h->e_phentsize))
ElfW              240 src/unexelf.c    ElfW (Ehdr) *old_file_h, *new_file_h;
ElfW              241 src/unexelf.c    ElfW (Phdr) *old_program_h, *new_program_h;
ElfW              242 src/unexelf.c    ElfW (Shdr) *old_section_h, *new_section_h;
ElfW              247 src/unexelf.c    ElfW (Phdr) *old_bss_seg, *new_bss_seg;
ElfW              248 src/unexelf.c    ElfW (Addr) old_bss_addr, new_bss_addr;
ElfW              249 src/unexelf.c    ElfW (Word) old_bss_size, bss_size_growth, new_data2_size;
ElfW              250 src/unexelf.c    ElfW (Off) old_bss_offset, new_data2_offset;
ElfW              291 src/unexelf.c    old_file_h = (ElfW (Ehdr) *) old_base;
ElfW              292 src/unexelf.c    old_program_h = (ElfW (Phdr) *) ((byte *) old_base + old_file_h->e_phoff);
ElfW              293 src/unexelf.c    old_section_h = (ElfW (Shdr) *) ((byte *) old_base + old_file_h->e_shoff);
ElfW              302 src/unexelf.c        ElfW (Phdr) *seg = &OLD_PROGRAM_H (n);
ElfW              320 src/unexelf.c        ElfW (Shdr) *shdr = &OLD_SECTION_H (n);
ElfW              339 src/unexelf.c    new_bss_addr = (ElfW (Addr)) new_break;
ElfW              342 src/unexelf.c    new_data2_size += alignof (ElfW (Shdr)) - 1;
ElfW              343 src/unexelf.c    new_data2_size -= new_data2_size % alignof (ElfW (Shdr));
ElfW              381 src/unexelf.c    new_file_h = (ElfW (Ehdr) *) new_base;
ElfW              389 src/unexelf.c    new_program_h = (ElfW (Phdr) *) ((byte *) new_base + new_file_h->e_phoff);
ElfW              390 src/unexelf.c    new_section_h = (ElfW (Shdr) *) ((byte *) new_base + new_file_h->e_shoff);
ElfW              419 src/unexelf.c        ElfW (Shdr) *old_shdr = &OLD_SECTION_H (n);
ElfW              420 src/unexelf.c        ElfW (Shdr) *new_shdr = &NEW_SECTION_H (n);
ElfW              509 src/unexelf.c        ElfW (Sym) *symp, *symendp;
ElfW              510 src/unexelf.c        ElfW (Shdr) *sym_shdr = &NEW_SECTION_H (n);
ElfW              518 src/unexelf.c        symp = (ElfW (Sym) *) (sym_shdr->sh_offset + new_base);
ElfW              519 src/unexelf.c        symendp = (ElfW (Sym) *) ((byte *) symp + sym_shdr->sh_size);
ElfW              543 src/unexelf.c  	      ElfW (Shdr) *new_shdr = &NEW_SECTION_H (symp->st_shndx);
ElfW              546 src/unexelf.c  		  ElfW (Shdr) *old_shdr = &OLD_SECTION_H (symp->st_shndx);
ElfW              572 src/unexelf.c        ElfW (Shdr) *old_shdr = &OLD_SECTION_H (n);
ElfW              573 src/unexelf.c        ElfW (Shdr) *new_shdr = &NEW_SECTION_H (n);
ElfW              597 src/unexelf.c        ElfW (Shdr) *rel_shdr = &NEW_SECTION_H (n);
ElfW              598 src/unexelf.c        ElfW (Shdr) *shdr;
ElfW              617 src/unexelf.c  	      ElfW (Addr) offset = shdr->sh_addr - shdr->sh_offset;
ElfW              623 src/unexelf.c  		  ElfW (Addr) addr = ((ElfW (Rel) *) reloc)->r_offset - offset;
ElfW              625 src/unexelf.c  		  if (((ElfW (Rel) *) reloc)->r_offset == 0)
ElfW              631 src/unexelf.c  			  sizeof (ElfW (Addr)));