Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Dinffast.c62 unsigned wnext; /* window write index */ in inflate_fast() local
89 wnext = state->wnext; in inflate_fast()
197 if (wnext == 0) { /* very common case */ in inflate_fast()
207 else if (wnext < op) { /* wrap around window */ in inflate_fast()
208 from += wsize + wnext - op; in inflate_fast()
209 op -= wnext; in inflate_fast()
216 if (wnext < len) { /* some from start of window */ in inflate_fast()
217 op = wnext; in inflate_fast()
227 from += wnext - op; in inflate_fast()
H A Dinflate.c137 state->wnext = 0; in inflateReset()
385 state->wnext = 0; in updatewindow()
392 state->wnext = 0; in updatewindow()
396 dist = state->wsize - state->wnext; in updatewindow()
398 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
402 state->wnext = copy; in updatewindow()
406 state->wnext += dist; in updatewindow()
407 if (state->wnext == state->wsize) state->wnext = 0; in updatewindow()
1157 if (copy > state->wnext) { in inflate()
1158 copy -= state->wnext; in inflate()
[all …]
H A Dinflate.h99 unsigned wnext; /* window write index */ member
H A Dinfback.c60 state->wnext = 0; in inflateBackInit_()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_iso9660.c874 struct idrent *wnext; member
5874 idrent->wnext = idrent->avail = NULL; in idr_register()
5887 idr->wait_list.last = &(idrent->wnext); in idr_register()
5915 for (n = idr->wait_list.first; n != NULL; n = n->wnext) { in idr_resolve()