Lines Matching refs:SZ

1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr)
18 static void glue(bswap_phdr, SZ)(struct elf_phdr *phdr)
30 static void glue(bswap_shdr, SZ)(struct elf_shdr *shdr)
44 static void glue(bswap_sym, SZ)(struct elf_sym *sym)
52 static void glue(bswap_rela, SZ)(struct elf_rela *rela)
59 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table,
70 static int glue(symfind, SZ)(const void *s0, const void *s1)
83 static const char *glue(lookup_symbol, SZ)(struct syminfo *s,
86 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ);
90 glue(symfind, SZ));
98 static int glue(symcmp, SZ)(const void *s0, const void *s1)
107 static void glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab,
125 glue(bswap_shdr, SZ)(shdr_table + i);
129 symtab = glue(find_section, SZ)(shdr_table, ehdr->e_shnum, SHT_SYMTAB);
154 glue(bswap_sym, SZ)(&syms[i]);
173 syms[i].st_value &= ~(glue(glue(Elf, SZ), _Addr))1;
184 qsort(syms, nsyms, sizeof(*syms), glue(symcmp, SZ));
193 s->lookup_symbol = glue(lookup_symbol, SZ);
194 glue(s->disas_symtab.elf, SZ) = g_steal_pointer(&syms);
201 static int glue(elf_reloc, SZ)(struct elfhdr *ehdr, int fd, int must_swab,
219 glue(bswap_shdr, SZ)(&shdr_table[i]);
223 reltab = glue(find_section, SZ)(shdr_table, ehdr->e_shnum, SHT_RELA);
235 glue(bswap_rela, SZ)(&rels[i]);
275 static struct elf_note *glue(get_elf_note_type, SZ)(struct elf_note *nhdr,
315 static ssize_t glue(load_elf, SZ)(const char *name, int fd,
339 glue(bswap_ehdr, SZ)(&ehdr);
394 glue(load_symbols, SZ)(&ehdr, fd, must_swab, clear_lsb, sym_cb);
408 glue(bswap_phdr, SZ)(ph);
496 glue(elf_reloc, SZ)(&ehdr, fd, must_swab, translate_fn,
605 nhdr = glue(get_elf_note_type, SZ)(nhdr, file_size, ph->p_align,
608 elf_note_fn((void *)nhdr, (void *)&ph->p_align, SZ == 64);