Lines Matching refs:next
74 GmListElement* next; member
92 this->next = head; in makeGmListElement()
111 GmListElement* next = head->next; in gcleanup() local
115 head = next; in gcleanup()
780 mchunkptr next = chunk_at_offset(p, sz); local
793 assert(next->prev_size == sz);
796 assert (next == top || inuse(next));
812 mchunkptr next = next_chunk(p); local
828 if (next == top)
830 assert(prev_inuse(next));
831 assert(chunksize(next) >= MINSIZE);
833 else if (!inuse(next))
834 do_check_free_chunk(next);
1534 mchunkptr next; /* next contiguous chunk */ local
1566 next = chunk_at_offset(p, sz);
1567 nextsz = chunksize(next);
1570 if (next == top) /* merge with top */
1589 set_head(next, nextsz); /* clear inuse bit */
1605 if (!(inuse_bit_at_offset(next, nextsz))) /* consolidate forward */
1609 if (!islr && next->fd == last_remainder) /* re-insert last_remainder */
1615 unlink(next, bck, fwd);
1674 mchunkptr next; /* next contiguous chunk after oldp */ local
1741 next = chunk_at_offset(oldp, oldsize);
1742 if (next == top || !inuse(next))
1744 nextsize = chunksize(next);
1747 if (next == top)
1764 unlink(next, bck, fwd);
1773 next = NULL;
1786 if (next != NULL)
1789 if (next == top)
1810 unlink(next, bck, fwd);