Lines Matching refs:ABFD
527 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \ argument
529 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
530 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \ argument
532 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
534 #define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \ argument
536 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
537 #define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \ argument
539 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
1555 #define bfd_section_list_remove(ABFD, S) \ argument
1564 (ABFD)->sections = _next; \
1568 (ABFD)->section_last = _prev; \
1571 #define bfd_section_list_append(ABFD, S) \ argument
1575 bfd *_abfd = ABFD; \
1590 #define bfd_section_list_prepend(ABFD, S) \ argument
1594 bfd *_abfd = ABFD; \
1609 #define bfd_section_list_insert_after(ABFD, A, S) \ argument
1621 (ABFD)->section_last = _s; \
1624 #define bfd_section_list_insert_before(ABFD, B, S) \ argument
1636 (ABFD)->sections = _s; \
1639 #define bfd_section_removed_from_list(ABFD, S) \ argument
1640 ((S)->next == NULL ? (ABFD)->section_last != (S) : (S)->next->prev != (S))