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

/freebsd-11-stable/sys/contrib/zlib/
H A Dinffast.c65 unsigned wnext; /* window write index */ local
92 wnext = state->wnext;
200 if (wnext == 0) { /* very common case */
210 else if (wnext < op) { /* wrap around window */
211 from += wsize + wnext - op;
212 op -= wnext;
219 if (wnext < len) { /* some from start of window */
220 op = wnext;
230 from += wnext
[all...]
H A Dinflate.h98 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()
153 state->wnext = 0;
417 state->wnext = 0;
424 state->wnext = 0;
428 dist = state->wsize - state->wnext;
430 zmemcpy(state->window + state->wnext, end - copy, dist);
434 state->wnext = copy;
438 state->wnext += dist;
439 if (state->wnext == state->wsize) state->wnext
[all...]
H A Dinfback.c67 state->wnext = 0;
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c874 struct idrent *wnext; member in struct:idr::idrent
5878 idrent->wnext = idrent->avail = NULL;
5891 idr->wait_list.last = &(idrent->wnext);
5919 for (n = idr->wait_list.first; n != NULL; n = n->wnext) {

Completed in 82 milliseconds