Lines Matching defs:next
200 char *next;
229 next = (char *) mem;
230 next += sizeof(*mem);
236 mem->window_memory = (Byte *) PTR_ALIGN(next, PAGE_SIZE);
238 mem->window_memory = (Byte *) next;
240 next += zlib_deflate_window_memsize(windowBits);
241 mem->prev_memory = (Pos *) next;
242 next += zlib_deflate_prev_memsize(windowBits);
243 mem->head_memory = (Pos *) next;
244 next += zlib_deflate_head_memsize(memLevel);
245 mem->overlay_memory = next;
383 * return OK instead of BUF_ERROR at next call of deflate:
417 s->last_flush = -1; /* avoid BUF_ERROR next call, see above */
420 /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
423 * empty block here, this will be done at next call. This also
446 s->last_flush = -1; /* avoid BUF_ERROR at next call, see above */
617 /* Skip to next match if the match length cannot increase
934 * for the next match, plus MIN_MATCH bytes to insert the
935 * string following the next match.
996 * matter since it will be recomputed at next deflate call.
1015 * no better match at the next window position.
1029 * for the next match, plus MIN_MATCH bytes to insert the
1030 * string following the next match.
1117 * the next step to decide.