Searched refs:wnext (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/lib/libz/
H A 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
[all...]
H A Dinflate.h95 unsigned wnext; /* window write index */ member in struct:inflate_state
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
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
[all...]
H A Dinfback.c67 state->wnext = 0;
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c874 struct idrent *wnext; member in struct:idr::idrent
5865 idrent->wnext = idrent->avail = NULL;
5878 idr->wait_list.last = &(idrent->wnext);
5906 for (n = idr->wait_list.first; n != NULL; n = n->wnext) {

Completed in 169 milliseconds