Lines Matching refs:asect
4256 coff_slurp_line_table (bfd *abfd, asection *asect) in coff_slurp_line_table() argument
4262 BFD_ASSERT (asect->lineno == NULL); in coff_slurp_line_table()
4264 amt = (bfd_size_type) bfd_coff_linesz (abfd) * asect->lineno_count; in coff_slurp_line_table()
4265 native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos, amt); in coff_slurp_line_table()
4272 amt = ((bfd_size_type) asect->lineno_count + 1) * sizeof (alent); in coff_slurp_line_table()
4282 while (counter < asect->lineno_count) in coff_slurp_line_table()
4322 - bfd_section_vma (abfd, asect); in coff_slurp_line_table()
4331 asect->lineno = lineno_cache; in coff_slurp_line_table()
4837 coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols) in coff_slurp_reloc_table() argument
4845 if (asect->relocation) in coff_slurp_reloc_table()
4847 if (asect->reloc_count == 0) in coff_slurp_reloc_table()
4849 if (asect->flags & SEC_CONSTRUCTOR) in coff_slurp_reloc_table()
4854 amt = (bfd_size_type) bfd_coff_relsz (abfd) * asect->reloc_count; in coff_slurp_reloc_table()
4855 native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos, amt); in coff_slurp_reloc_table()
4856 amt = (bfd_size_type) asect->reloc_count * sizeof (arelent); in coff_slurp_reloc_table()
4862 for (idx = 0; idx < asect->reloc_count; idx++) in coff_slurp_reloc_table()
4877 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect); in coff_slurp_reloc_table()
4914 cache_ptr->address -= asect->vma; in coff_slurp_reloc_table()
4931 asect->relocation = reloc_cache; in coff_slurp_reloc_table()