HomeSort by: relevance | last modified time | path
    Searched refs:wnext (Results 1 - 4 of 4) sorted by relevancy

  /src/common/dist/zlib/
inffast.c 64 unsigned wnext; /* window write index */ local in function:inflate_fast
91 wnext = state->wnext;
199 if (wnext == 0) { /* very common case */
209 else if (wnext < op) { /* wrap around window */
210 from += wsize + wnext - op;
211 op -= wnext;
218 if (wnext < len) { /* some from start of window */
219 op = wnext;
229 from += wnext - op
    [all...]
inflate.h 99 unsigned wnext; /* window write index */ member in struct:inflate_state
inflate.c 50 * - Pull out common wnext == 0 case for speed in inflate_fast()
139 state->wnext = 0;
387 state->wnext = 0;
394 state->wnext = 0;
398 dist = state->wsize - state->wnext;
400 zmemcpy(state->window + state->wnext, end - copy, dist);
404 state->wnext = copy;
408 state->wnext += dist;
409 if (state->wnext == state->wsize) state->wnext = 0
    [all...]
infback.c 62 state->wnext = 0;

Completed in 13 milliseconds