Home
last modified time | relevance | path

Searched refs:wnext (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.27/zlib/
Dinffast.c82 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;
Dinflate.c138 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 …]
Dinflate.h95 unsigned wnext; /* window write index */ member
Dinfback.c67 state->wnext = 0;
/toolchain/binutils/binutils-2.27/zlib/contrib/masmx64/
Dinffas8664.c133 ar.write = state->wnext;
/toolchain/binutils/binutils-2.27/zlib/contrib/inflate86/
Dinffas86.c116 ar.write = state->wnext;