Lines Matching refs:asect
1816 NAME (aout, slurp_reloc_table) (bfd *abfd, sec_ptr asect, asymbol **symbols) in NAME()
1827 if (asect->relocation) in NAME()
1830 if (asect->flags & SEC_CONSTRUCTOR) in NAME()
1833 if (asect == obj_datasec (abfd)) in NAME()
1835 else if (asect == obj_textsec (abfd)) in NAME()
1837 else if (asect == obj_bsssec (abfd)) in NAME()
1845 if (bfd_seek (abfd, asect->rel_filepos, SEEK_SET) != 0) in NAME()
1908 asect->relocation = reloc_cache; in NAME()
1909 asect->reloc_count = cache_ptr - reloc_cache; in NAME()
1997 NAME (aout, get_reloc_upper_bound) (bfd *abfd, sec_ptr asect) in NAME()
2005 if (asect->flags & SEC_CONSTRUCTOR) in NAME()
2006 return (sizeof (arelent *) * (asect->reloc_count + 1)); in NAME()
2008 if (asect == obj_datasec (abfd)) in NAME()
2013 if (asect == obj_textsec (abfd)) in NAME()
2020 if (asect == obj_bsssec (abfd)) in NAME()
2023 if (asect == obj_bsssec (abfd)) in NAME()