Home | History | Annotate | Download | only in bfd

Lines Matching refs:amt

36   bfd_size_type amt = sizeof (record->header);
38 if (bfd_bread ((void *) record, amt, abfd) != amt)
41 amt = record->header.length - sizeof (record->header);
42 if ((long) amt <= 0)
44 if (bfd_bread ((void *) ((char *) record + sizeof (record->header)), amt, abfd)
45 != amt)
76 bfd_size_type amt;
82 amt = abfd->symcount;
83 amt *= sizeof (asymbol);
84 data->symbols = bfd_alloc (abfd, amt);
86 amt = data->symbol_string_length;
89 amt += abfd->symcount;
91 data->strings = bfd_alloc (abfd, amt);
221 bfd_size_type amt;
223 amt = sizeof (header_ext);
225 || bfd_bread ((void *) &header_ext, amt, abfd) != amt)
258 amt = sizeof (oasys_ar_data_type);
259 ar = bfd_alloc (abfd, amt);
261 amt = header.mod_count;
262 amt *= sizeof (oasys_module_info_type);
263 module = bfd_alloc (abfd, amt);
282 amt = sizeof (record_ext);
283 if (bfd_bread ((void *) &record_ext, amt, abfd) != amt)
295 amt = record.module_name_size;
296 module[i].name = bfd_alloc (abfd, amt + 1);
299 if (bfd_bread ((void *) module[i].name, amt, abfd) != amt)
318 bfd_size_type amt = sizeof (oasys_data_type);
320 abfd->tdata.oasys_obj_data = bfd_alloc (abfd, amt);
347 bfd_size_type amt;
455 amt = sizeof (oasys_reloc_type);
456 r = bfd_alloc (abfd, amt);
487 amt = sizeof (oasys_reloc_type);
488 r = bfd_alloc (abfd, amt);
1088 bfd_size_type amt = sizeof (oasys_symbol_type);
1089 oasys_symbol_type *new_symbol_type = bfd_zalloc (abfd, amt);