Lines Matching refs:ABFD
473 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \ argument
475 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
476 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \ argument
478 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
480 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \ argument
482 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
483 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \ argument
485 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
1661 #define bfd_section_list_remove(ABFD, S) \ argument
1670 (ABFD)->sections = _next; \
1674 (ABFD)->section_last = _prev; \
1677 #define bfd_section_list_append(ABFD, S) \ argument
1681 bfd *_abfd = ABFD; \
1696 #define bfd_section_list_prepend(ABFD, S) \ argument
1700 bfd *_abfd = ABFD; \
1715 #define bfd_section_list_insert_after(ABFD, A, S) \ argument
1727 (ABFD)->section_last = _s; \
1730 #define bfd_section_list_insert_before(ABFD, B, S) \ argument
1742 (ABFD)->sections = _s; \
1745 #define bfd_section_removed_from_list(ABFD, S) \ argument
1746 ((S)->next == NULL ? (ABFD)->section_last != (S) : (S)->next->prev != (S))