Searched refs:wnext (Results 1 – 11 of 11) sorted by relevance
/external/zlib/src/ |
D | 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;
|
D | inflate.c | 138 state->wnext = 0; 400 state->wnext = 0; 407 state->wnext = 0; 411 dist = state->wsize - state->wnext; 413 zmemcpy(state->window + state->wnext, end - copy, dist); 417 state->wnext = copy; 421 state->wnext += dist; 422 if (state->wnext == state->wsize) state->wnext = 0; 1148 if (copy > state->wnext) { 1149 copy -= state->wnext; [all …]
|
D | inflate.h | 95 unsigned wnext; /* window write index */ member
|
D | infback.c | 67 state->wnext = 0;
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
D | fx_zlib_inffast.c | 82 unsigned wnext; /* window write index */ in inflate_fast() local 109 wnext = state->wnext; in inflate_fast() 217 if (wnext == 0) { /* very common case */ in inflate_fast() 227 else if (wnext < op) { /* wrap around window */ in inflate_fast() 228 from += wsize + wnext - op; in inflate_fast() 229 op -= wnext; in inflate_fast() 236 if (wnext < len) { /* some from start of window */ in inflate_fast() 237 op = wnext; in inflate_fast() 247 from += wnext - op; in inflate_fast()
|
D | fx_zlib_inflate.c | 138 state->wnext = 0; in inflateReset() 400 state->wnext = 0; in updatewindow() 407 state->wnext = 0; in updatewindow() 411 dist = state->wsize - state->wnext; in updatewindow() 413 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow() 417 state->wnext = copy; in updatewindow() 421 state->wnext += dist; in updatewindow() 422 if (state->wnext == state->wsize) state->wnext = 0; in updatewindow() 1148 if (copy > state->wnext) { in inflate() 1149 copy -= state->wnext; in inflate() [all …]
|
D | inflate.h | 95 unsigned wnext; /* window write index */ member
|
D | fx_zlib_infback.c | 67 state->wnext = 0; in inflateBackInit_()
|
/external/zlib/src/contrib/masmx64/ |
D | inffas8664.c | 133 ar.write = state->wnext;
|
/external/chromium-trace/trace-viewer/tracing/third_party/jszip/ |
D | jszip.min.js | 13 …wnext,o=e.window,p=e.hold,q=e.bits,r=e.lencode,s=e.distcode,t=(1<<e.lenbits)-1,u=(1<<e.distbits)-1… 14 …sg="invalid distance too far back",c.mode=lb;break}q>c.wnext?(q-=c.wnext,ob=c.wsize-q):ob=c.wnext-…
|
/external/zlib/src/contrib/inflate86/ |
D | inffas86.c | 116 ar.write = state->wnext;
|