• Home
  • Raw
  • Download

Lines Matching refs:nb_syms

18170     int *ptr, *hash, nb_syms, sym_index, h;  in rebuild_hash()  local
18174 nb_syms = s->data_offset / sizeof(Elf32_Sym); in rebuild_hash()
18177 ptr = section_ptr_add(s->hash, (2 + nb_buckets + nb_syms) * sizeof(int)); in rebuild_hash()
18179 ptr[1] = nb_syms; in rebuild_hash()
18186 for(sym_index = 1; sym_index < nb_syms; sym_index++) { in rebuild_hash()
18427 int nb_syms, i; in sort_syms() local
18433 nb_syms = s->data_offset / sizeof(Elf32_Sym); in sort_syms()
18434 new_syms = tcc_malloc(nb_syms * sizeof(Elf32_Sym)); in sort_syms()
18435 old_to_new_syms = tcc_malloc(nb_syms * sizeof(int)); in sort_syms()
18440 for(i = 0; i < nb_syms; i++) { in sort_syms()
18452 for(i = 0; i < nb_syms; i++) { in sort_syms()
18461 memcpy(s->data, new_syms, nb_syms * sizeof(Elf32_Sym)); in sort_syms()
19364 int nb_syms; in tcc_output_file() local
19366 nb_syms = symtab_section->data_offset / sizeof(Elf32_Sym); in tcc_output_file()
19367 s1->symtab_to_dynsym = tcc_mallocz(sizeof(int) * nb_syms); in tcc_output_file()
19866 int size, i, j, offset, offseti, nb_syms, sym_index, ret; in tcc_load_object_file() local
19905 nb_syms = 0; in tcc_load_object_file()
19915 nb_syms = sh->sh_size / sizeof(Elf32_Sym); in tcc_load_object_file()
20010 old_to_new_syms = tcc_mallocz(nb_syms * sizeof(int)); in tcc_load_object_file()
20013 for(i = 1; i < nb_syms; i++, sym++) { in tcc_load_object_file()
20066 if (sym_index >= nb_syms) in tcc_load_object_file()
20215 int i, nb_syms, nb_dts, sym_bind, ret; in tcc_load_dll() local
20235 nb_syms = 0; in tcc_load_dll()
20247 nb_syms = sh->sh_size / sizeof(Elf32_Sym); in tcc_load_dll()
20290 for(i = 1, sym = dynsym + 1; i < nb_syms; i++, sym++) { in tcc_load_dll()