HomeSort by relevance Sort by last modified time
    Searched refs:wnext (Results 1 - 6 of 6) sorted by null

  /external/zlib/
inffast.c 82 unsigned wnext; /* window write index */ local
109 wnext = state->wnext;
217 if (wnext == 0) { /* very common case */
227 else if (wnext < op) { /* wrap around window */
228 from += wsize + wnext - op;
229 op -= wnext;
236 if (wnext < len) { /* some from start of window */
237 op = wnext;
247 from += wnext - op
    [all...]
inflate.h 95 unsigned wnext; /* window write index */ member in struct:inflate_state
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
137 state->wnext = 0;
398 state->wnext = 0;
406 state->wnext = 0;
410 dist = state->wsize - state->wnext;
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist);
416 state->wnext = copy;
420 state->wnext += dist;
421 if (state->wnext == state->wsize) state->wnext = 0
    [all...]
infback.c 67 state->wnext = 0;
  /external/zlib/contrib/masmx64/
inffas8664.c 133 ar.write = state->wnext;
  /external/zlib/contrib/inflate86/
inffas86.c 116 ar.write = state->wnext;
    [all...]

Completed in 71 milliseconds