Lines Matching refs:asect

4517 coff_slurp_line_table (bfd *abfd, asection *asect)  in coff_slurp_line_table()  argument
4530 BFD_ASSERT (asect->lineno == NULL); in coff_slurp_line_table()
4532 amt = ((bfd_size_type) asect->lineno_count + 1) * sizeof (alent); in coff_slurp_line_table()
4537 amt = (bfd_size_type) bfd_coff_linesz (abfd) * asect->lineno_count; in coff_slurp_line_table()
4538 native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos, amt); in coff_slurp_line_table()
4548 asect->lineno = lineno_cache; in coff_slurp_line_table()
4553 for (counter = 0; counter < asect->lineno_count; counter++, src++) in coff_slurp_line_table()
4624 - bfd_section_vma (abfd, asect)); in coff_slurp_line_table()
4628 asect->lineno_count = cache_ptr - lineno_cache; in coff_slurp_line_table()
4646 for (i = 0; i < asect->lineno_count; i++) in coff_slurp_line_table()
4656 amt = (bfd_size_type) asect->lineno_count * sizeof (alent); in coff_slurp_line_table()
5202 coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols) in coff_slurp_reloc_table() argument
5210 if (asect->relocation) in coff_slurp_reloc_table()
5212 if (asect->reloc_count == 0) in coff_slurp_reloc_table()
5214 if (asect->flags & SEC_CONSTRUCTOR) in coff_slurp_reloc_table()
5219 amt = (bfd_size_type) bfd_coff_relsz (abfd) * asect->reloc_count; in coff_slurp_reloc_table()
5220 native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos, amt); in coff_slurp_reloc_table()
5221 amt = (bfd_size_type) asect->reloc_count * sizeof (arelent); in coff_slurp_reloc_table()
5227 for (idx = 0; idx < asect->reloc_count; idx++) in coff_slurp_reloc_table()
5242 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect); in coff_slurp_reloc_table()
5280 cache_ptr->address -= asect->vma; in coff_slurp_reloc_table()
5297 asect->relocation = reloc_cache; in coff_slurp_reloc_table()