HomeSort by: relevance | last modified time | path
    Searched defs:wnext (Results 1 - 2 of 2) 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

Completed in 12 milliseconds