Lines Matching defs:next
1005 struct pool_header *nextpool; /* next pool of this size class */
1024 /* Pool-aligned pointer to the next pool to be carved off. */
1099 that the next allocation for its size class will reuse the freed block.
1105 Empty pools have no inherent size class: the next time a malloc finds
1127 blocks. The offset from the pool_header to the start of "the next" virgin
1221 This means that the next allocation will come from a heavily used arena,
1503 * the next ideal arena. The tail_lo and tail_hi members correspond to
1528 * for the next arena. Note that it might be in different MAP_TOP
1636 /* Take the next available arena object off the head of the list. */
1801 poolp next;
1802 next = pool->nextpool;
1804 next->prevpool = pool;
1805 pool->nextpool = next;
1908 poolp next = usedpools[size + size]; /* == prev */
1909 pool->nextpool = next;
1910 pool->prevpool = next;
1911 next->nextpool = pool;
1912 next->prevpool = pool;
2037 poolp next = usedpools[size + size];
2038 poolp prev = next->prevpool;
2040 /* insert pool before next: prev <-> pool <-> next */
2041 pool->nextpool = next;
2043 next->prevpool = pool;
2050 poolp next = pool->nextpool;
2052 next->prevpool = prev;
2053 prev->nextpool = next;
2090 * 3. If the "next" arena has a smaller count of free
2471 excellent way to set a breakpoint on the next run, to capture the