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

  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_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
  /external/zlib/src/
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

Completed in 122 milliseconds