Lines Matching refs:x
70 Elf_Shdr *x; in get_offset_from_address() local
73 x = (void *)hdr + hdr->e_shoff; in get_offset_from_address()
75 num_sections = x[0].sh_size; in get_offset_from_address()
80 unsigned long start = x[i].sh_addr; in get_offset_from_address()
81 unsigned long end = start + x[i].sh_size; in get_offset_from_address()
82 unsigned long offset = x[i].sh_offset; in get_offset_from_address()
138 Elf_Shdr *x; in find_elf_symbol() local
141 x = (void *)hdr + hdr->e_shoff; in find_elf_symbol()
145 strtab = (void *)hdr + x[link].sh_offset; in find_elf_symbol()
163 Elf_Shdr *x; in get_symbol_from_table() local
165 x = (void *)hdr + hdr->e_shoff; in get_symbol_from_table()
175 sec = &x[secndx]; in get_symbol_from_table()
186 Elf_Shdr *x; in get_symbol_table() local
189 x = (void *)hdr + hdr->e_shoff; in get_symbol_table()
191 num_sections = x[0].sh_size; in get_symbol_table()
196 if (x[i].sh_type == SHT_SYMTAB) in get_symbol_table()
197 return &x[i]; in get_symbol_table()