Lines Matching defs:next
38 * cblock : the index of the next unallocated block (here 7).
39 * next : a pointer to an unused slot inside an allocated bloc
43 unused slots starting at <next>)
45 - insertions and deletions in this list are done at the root <next>.
46 if <next> points to NULL (no slots are availlable) when a draw()
65 next = NULL;
80 if (!next) addblock();
81 void *p = next;
82 next = *(void **)p;
88 *(void **)p = next;
89 next = (void *) p;
97 void *next;
112 *(void **)p = next;
113 next = block[i];