Home | History | Annotate | Download | only in include

Lines Matching refs:_s

1615       asection *_s = S;                                \
1616 asection *_next = _s->next; \
1617 asection *_prev = _s->prev; \
1631 asection *_s = S; \
1633 _s->next = NULL; \
1636 _s->prev = _abfd->section_last; \
1637 _abfd->section_last->next = _s; \
1641 _s->prev = NULL; \
1642 _abfd->sections = _s; \
1644 _abfd->section_last = _s; \
1650 asection *_s = S; \
1652 _s->prev = NULL; \
1655 _s->next = _abfd->sections; \
1656 _abfd->sections->prev = _s; \
1660 _s->next = NULL; \
1661 _abfd->section_last = _s; \
1663 _abfd->sections = _s; \
1670 asection *_s = S; \
1672 _s->next = _next; \
1673 _s->prev = _a; \
1674 _a->next = _s; \
1676 _next->prev = _s; \
1678 (ABFD)->section_last = _s; \
1685 asection *_s = S; \
1687 _s->prev = _prev; \
1688 _s->next = _b; \
1689 _b->prev = _s; \
1691 _prev->next = _s; \
1693 (ABFD)->sections = _s; \