Lines Matching refs:next
961 GmListElement* next;
979 this->next = head;
998 GmListElement* next = head->next;
1002 head = next;
1020 /* next region is available. Set 'start_address' */
1021 /* to the next region and call 'VirtualQuery()' */
1026 /* Make sure we start looking for the next region */
1027 /* on the *next* 64K boundary. Otherwise, even if */
1178 user. "Nextchunk" is the beginning of the next contiguous chunk.
1191 | Forward pointer to next chunk in list |
1218 next contiguous chunk that would have to index off it. (After
1316 /* Ptr to next physical malloc_chunk. */
1514 Requests are `small' if both the corresponding and the next bin are small
1621 mchunkptr next = chunk_at_offset(p, sz);
1634 assert(next->prev_size == sz);
1637 assert (next == top || inuse(next));
1653 mchunkptr next = next_chunk(p);
1669 if (next == top)
1671 assert(prev_inuse(next));
1672 assert(chunksize(next) >= MINSIZE);
1674 else if (!inuse(next))
1675 do_check_free_chunk(next);
1986 /* Guarantee the next brk will be at a page boundary */
2137 /* Also scan the next one, since it would have a remainder < MINSIZE */
2293 /* Get to the next possibly nonempty block */
2372 mchunkptr next; /* next contiguous chunk */
2396 next = chunk_at_offset(p, sz);
2397 nextsz = chunksize(next);
2399 if (next == top) /* merge with top */
2418 set_head(next, nextsz); /* clear inuse bit */
2434 if (!(inuse_bit_at_offset(next, nextsz))) /* consolidate forward */
2438 if (!islr && next->fd == last_remainder) /* re-insert last_remainder */
2444 unlink(next, bck, fwd);
2509 mchunkptr next; /* next contiguous chunk after oldp */
2561 next = chunk_at_offset(oldp, oldsize);
2562 if (next == top || !inuse(next))
2564 nextsize = chunksize(next);
2567 if (next == top)
2579 /* Forward into next chunk */
2582 unlink(next, bck, fwd);
2589 next = 0;
2602 if (next != 0)
2605 if (next == top)
2621 /* into next chunk */
2624 unlink(next, bck, fwd);
2653 /* Avoid copy if newp is next chunk after oldp. */
2762 next aligned spot -- we've allocated enough total room so that