Lines Matching refs:shdr
15 ELF(Shdr) *shdr; in FUNC()
25 shdr = shdrs + (sh_entsize * swap_uint16(ehdr->e_shstrndx)); in FUNC()
26 shstrtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
29 shdr = shdrs + (i * sh_entsize); in FUNC()
30 name = shstrtab + swap_uint32(shdr->sh_name); in FUNC()
37 switch (swap_uint32(shdr->sh_type)) { in FUNC()
45 dyn = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
59 shdr->sh_type = swap_uint32(SHT_MIPS_ABIFLAGS); in FUNC()
60 shdr->sh_entsize = shdr->sh_size; in FUNC()
117 ELF(Shdr) *shdr; in FUNC()
129 shdr = shdrs + (i * sh_entsize); in FUNC()
131 if (swap_uint32(shdr->sh_type) == SHT_SYMTAB) in FUNC()
151 symtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()
152 st_entsize = FUNC(swap_uint)(shdr->sh_entsize); in FUNC()
153 st_count = FUNC(swap_uint)(shdr->sh_size) / st_entsize; in FUNC()
156 shdr = shdrs + (swap_uint32(shdr->sh_link) * sh_entsize); in FUNC()
157 strtab = vdso + FUNC(swap_uint)(shdr->sh_offset); in FUNC()