• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/cxxfilt-11/cxxfilt/bfd/

Lines Matching defs:amt

134       bfd_size_type amt = sizeof (struct coff_section_tdata);
136 sec->used_by_bfd = bfd_zalloc (abfd, amt);
444 bfd_size_type amt = sizeof (* ret);
446 ret = bfd_malloc (amt);
969 bfd_size_type amt;
1004 amt = symcount * sizeof (struct xcoff_link_hash_entry *);
1005 sym_hash = bfd_zalloc (abfd, amt);
1013 amt = symcount * sizeof (asection *);
1014 csect_cache = bfd_zalloc (abfd, amt);
1024 amt = abfd->section_count + 1;
1025 amt *= sizeof (struct reloc_info_struct);
1026 reloc_info = bfd_zmalloc (amt);
1041 amt = o->reloc_count;
1042 amt *= sizeof (asection *);
1043 reloc_info[o->target_index].csects = bfd_zmalloc (amt);
1053 amt = linesz * o->lineno_count;
1054 linenos = bfd_malloc (amt);
1059 || bfd_bread (linenos, amt, abfd) != amt)
1316 amt = enclosing->reloc_count;
1317 relindx = xcoff_find_reloc (relocs, amt, sym.n_value);
1437 amt = sizeof (struct coff_section_tdata);
1438 csect->used_by_bfd = bfd_zalloc (abfd, amt);
1441 amt = sizeof (struct xcoff_section_tdata);
1442 coff_section_data (abfd, csect)->tdata = bfd_zalloc (abfd, amt);
1457 amt = enclosing->reloc_count;
1458 relindx = xcoff_find_reloc (relocs, amt, csect->vma);
1578 amt = sizeof (struct coff_section_tdata);
1579 csect->used_by_bfd = bfd_zalloc (abfd, amt);
1582 amt = sizeof (struct xcoff_section_tdata);
1583 coff_section_data (abfd, csect)->tdata = bfd_zalloc (abfd, amt);
2423 bfd_size_type amt;
2431 amt = sizeof (* n);
2432 n = bfd_alloc (output_bfd, amt);
2544 bfd_size_type amt = sizeof (* n);
2546 n = bfd_alloc (output_bfd, amt);
2586 bfd_size_type amt = strlen (h->root.root.string) + 2;
2588 fnname = bfd_malloc (amt);
2688 bfd_size_type amt;
2925 amt = sizeof (struct internal_ldsym);
2926 h->ldsym = bfd_zalloc (ldinfo->output_bfd, amt);
2995 bfd_size_type amt;
3048 amt = sizeof (* ldsym);
3049 ldsym = bfd_malloc (amt);
4087 bfd_size_type amt = linesz * enc_count;
4089 || (bfd_bread (finfo->linenos, amt, input_bfd)
4090 != amt))
4239 bfd_size_type amt = outsym - finfo->outsyms;
4241 || bfd_bwrite (finfo->outsyms, amt, output_bfd) != amt)
4359 bfd_size_type amt;
4361 amt = sizeof (* n);
4362 n = bfd_alloc (finfo->output_bfd, amt);
4607 bfd_size_type amt;
4860 amt = outsym - finfo->outsyms;
4862 || bfd_bwrite (finfo->outsyms, amt, output_bfd) != amt)
5138 amt = outsym - finfo->outsyms;
5140 || bfd_bwrite (finfo->outsyms, amt, output_bfd) != amt)
5349 bfd_size_type amt;
5540 amt = abfd->section_count + 1;
5541 amt *= sizeof (struct xcoff_link_section_info);
5542 finfo.section_info = bfd_malloc (amt);
5588 amt = o->reloc_count;
5589 amt *= sizeof (struct internal_reloc);
5590 finfo.section_info[o->target_index].relocs = bfd_malloc (amt);
5592 amt = o->reloc_count;
5593 amt *= sizeof (struct xcoff_link_hash_entry *);
5594 finfo.section_info[o->target_index].rel_hashes = bfd_malloc (amt);
5644 amt = max_sym_count * sizeof (struct internal_syment);
5645 finfo.internal_syms = bfd_malloc (amt);
5647 amt = max_sym_count * sizeof (long);
5648 finfo.sym_indices = bfd_malloc (amt);
5650 amt = (max_sym_count + 1) * symesz;
5651 finfo.outsyms = bfd_malloc (amt);
5653 amt = max_lineno_count * bfd_coff_linesz (abfd);
5654 finfo.linenos = bfd_malloc (amt);
5656 amt = max_contents_size;
5657 finfo.contents = bfd_malloc (amt);
5659 amt = max_reloc_count * relsz;
5660 finfo.external_relocs = bfd_malloc (amt);
5762 amt = max_output_reloc_count * relsz;
5763 external_relocs = bfd_malloc (amt);
5899 amt = STRING_SIZE_SIZE;
5900 if (bfd_bwrite (strbuf, amt, abfd) != amt)