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

Lines Matching defs:amt

953 		bfd_size_type amt;
960 amt = sizeof (struct coff_comdat_info);
962 = bfd_alloc (abfd, amt);
969 amt = strlen (symname) + 1;
970 newname = bfd_alloc (abfd, amt);
1551 bfd_size_type amt;
1573 amt = sizeof (combined_entry_type) * 10;
1574 native = bfd_zalloc (abfd, amt);
1650 bfd_size_type amt;
1666 amt = sizeof (struct coff_section_tdata);
1667 section->used_by_bfd = bfd_zalloc (abfd, amt);
1675 amt = sizeof (struct pei_section_tdata);
1676 coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1756 bfd_size_type amt = sizeof (coff_data_type);
1758 abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2070 bfd_size_type amt = bfd_coff_symesz (abfd);
2072 buf = bfd_malloc (amt);
2074 || bfd_bread (buf, amt, abfd) != amt)
2452 bfd_size_type amt;
2454 amt = s->reloc_count;
2455 amt *= sizeof (arelent *);
2456 p = bfd_malloc (amt);
2459 memcpy (p, s->orelocation, (size_t) amt);
3044 bfd_size_type amt;
3051 amt = sizeof (struct asection *) * (count + 1);
3052 section_list = bfd_malloc (amt);
3117 bfd_size_type amt = sizeof (struct coff_section_tdata);
3119 current->used_by_bfd = bfd_zalloc (abfd, amt);
3125 bfd_size_type amt = sizeof (struct pei_section_tdata);
3127 coff_section_data (abfd, current)->tdata = bfd_zalloc (abfd, amt);
3601 bfd_size_type amt = bfd_coff_scnhsz (abfd);
3604 || bfd_bwrite (& buff, amt, abfd) != amt)
3713 bfd_size_type amt;
3726 amt = bfd_coff_scnhsz (abfd);
3728 || bfd_bwrite (& buff, amt, abfd) != amt)
4261 bfd_size_type amt;
4265 amt = (bfd_size_type) bfd_coff_linesz (abfd) * asect->lineno_count;
4266 native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos, amt);
4273 amt = ((bfd_size_type) asect->lineno_count + 1) * sizeof (alent);
4274 lineno_cache = bfd_alloc (abfd, amt);
4347 bfd_size_type amt;
4358 amt = obj_raw_syment_count (abfd);
4359 amt *= sizeof (coff_symbol_type);
4360 cached_area = bfd_alloc (abfd, amt);
4364 amt = obj_raw_syment_count (abfd);
4365 amt *= sizeof (unsigned int);
4366 table_ptr = bfd_alloc (abfd, amt);
4844 bfd_size_type amt;
4855 amt = (bfd_size_type) bfd_coff_relsz (abfd) * asect->reloc_count;
4856 native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos, amt);
4857 amt = (bfd_size_type) asect->reloc_count * sizeof (arelent);
4858 reloc_cache = bfd_alloc (abfd, amt);