Home | History | Annotate | Download | only in test

Lines Matching refs:next

51                             allocation routines on the next zlib initialization
59 struct mem_item *next; /* pointer to next item in list, or NULL */
99 item->next = zone->first;
114 struct mem_item *item, *next;
123 /* point next to the item that matches ptr, or NULL if not found -- remove
125 next = zone->first;
126 if (next) {
127 if (next->ptr == ptr)
128 zone->first = next->next; /* first one is it, remove from list */
131 item = next;
132 next = item->next;
133 } while (next != NULL && next->ptr != ptr);
134 if (next) { /* if found, remove from linked list */
135 item->next = next->next;
143 if (next) {
144 zone->total -= next->size;
145 free(next);
203 struct mem_item *item, *next;
213 next = item->next;
215 item = next;
248 unsigned next, val;
253 next = 0;
265 in[next++] = val & 0xff; /* save the decoded byte */
270 *len = next;
271 in = reallocf(in, next);
337 err = 9; /* don't care next time around */
449 static unsigned int next = 0;
454 next = 0;
460 return next < sizeof(dat) ? (*buf = dat + next++, 1) : 0;
622 code *next, table[ENOUGH_DISTS];
629 next = table;
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
633 next = table;
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);