Lines Matching defs:ecoffp
751 translate_syms(struct elf_syms *elfp, struct ecoff_syms *ecoffp)
764 memset(ecoffp, 0, sizeof(*ecoffp));
766 ecoffp->nsymbols = 0;
767 ecoffp->ecoff_syms = malloc(sizeof(struct ecoff_extsym) * nsyms);
798 ecoffp->ecoff_syms[idx].es_strindex = nsp - newstrings;
802 ecoffp->ecoff_syms[idx].es_type = 1;
803 ecoffp->ecoff_syms[idx].es_class = 5;
806 ecoffp->ecoff_syms[idx].es_value = esym->st_value;
807 ecoffp->ecoff_syms[idx].es_symauxindex = 0xfffff;
812 ecoffp->nsymbols = idx;
813 ecoffp->stringtab = newstrings;
814 ecoffp->stringsize = nsp - newstrings;
818 (size_t)ecoffp->stringsize, (size_t)ecoffp->stringsize);