Lines Matching defs:symtab
273 struct dst_sec *symtab = &linker->secs[linker->symtab_sec_idx];
275 size_t sym_cnt = symtab->sec_sz / sizeof(*sym);
277 syms = libbpf_reallocarray(symtab->raw_data, sym_cnt + 1, sizeof(*sym));
284 symtab->raw_data = syms;
285 symtab->sec_sz += sizeof(*sym);
286 symtab->shdr->sh_size += sizeof(*sym);
287 symtab->data->d_size += sizeof(*sym);
380 sec = add_dst_sec(linker, ".symtab");
1223 struct src_sec *symtab = &obj->secs[obj->symtab_sec_idx];
1224 Elf64_Sym *sym = symtab->data->d_buf;
1225 int i, n = symtab->shdr->sh_size / symtab->shdr->sh_entsize, err;
1226 int str_sec_idx = symtab->shdr->sh_link;
1256 struct dst_sec *symtab = &linker->secs[linker->symtab_sec_idx];
1257 Elf64_Sym *syms = symtab->raw_data;
2105 struct src_sec *symtab = &obj->secs[obj->symtab_sec_idx];
2106 Elf64_Sym *sym = symtab->data->d_buf;
2107 int i, n = symtab->shdr->sh_size / symtab->shdr->sh_entsize;
2108 int str_sec_idx = symtab->shdr->sh_link;