Lines Matching refs:amt

98   bfd_size_type amt = sizeof (record->header);
99 if (bfd_bread ((PTR) record, amt, abfd) != amt)
102 amt = record->header.length - sizeof (record->header);
103 if ((long) amt <= 0)
105 if (bfd_bread ((PTR) ((char *) record + sizeof (record->header)), amt, abfd)
106 != amt)
145 bfd_size_type amt;
152 amt = abfd->symcount;
153 amt *= sizeof (asymbol);
154 data->symbols = (asymbol *) bfd_alloc (abfd, amt);
156 amt = data->symbol_string_length;
159 amt += abfd->symcount;
161 data->strings = bfd_alloc (abfd, amt);
305 bfd_size_type amt;
307 amt = sizeof (header_ext);
309 || bfd_bread ((PTR) &header_ext, amt, abfd) != amt)
346 amt = sizeof (oasys_ar_data_type);
347 ar = (oasys_ar_data_type *) bfd_alloc (abfd, amt);
349 amt = header.mod_count;
350 amt *= sizeof (oasys_module_info_type);
351 module = (oasys_module_info_type *) bfd_alloc (abfd, amt);
372 amt = sizeof (record_ext);
373 if (bfd_bread ((PTR) &record_ext, amt, abfd) != amt)
398 amt = sizeof (record_ext);
399 if (bfd_bread ((PTR) &record_ext, amt, abfd) != amt)
411 amt = record.module_name_size;
412 module[i].name = bfd_alloc (abfd, amt + 1);
415 if (bfd_bread ((PTR) module[i].name, amt, abfd) != amt)
435 bfd_size_type amt = sizeof (oasys_data_type);
436 abfd->tdata.oasys_obj_data = (oasys_data_type *) bfd_alloc (abfd, amt);
620 bfd_size_type amt;
727 amt = sizeof (oasys_reloc_type);
729 amt);
769 amt = sizeof (oasys_reloc_type);
771 amt);
1381 bfd_size_type amt = sizeof (oasys_symbol_type);
1382 oasys_symbol_type *new = (oasys_symbol_type *) bfd_zalloc (abfd, amt);