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

/forgerock/web-agents-v4/zlib/
H A Dinflate.h93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
H A Dinfback.c65 state->wsize = 1U << windowBits;
214 left = state->wsize; \
287 left = state->wsize;
485 if (state->whave < state->wsize)
486 state->whave = state->wsize - left;
487 inflate_fast(strm, state->wsize);
577 if (state->offset > state->wsize - (state->whave < state->wsize ?
588 copy = state->wsize - state->offset;
609 if (left < state->wsize) {
[all...]
H A Dinflate.c136 state->wsize = 0;
366 Update the window with the last wsize (normally 32K) bytes written before
398 if (state->wsize == 0) {
399 state->wsize = 1U << state->wbits;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
406 zmemcpy(state->window, end - state->wsize, state->wsize);
408 state->whave = state->wsize;
411 dist = state->wsize
[all...]
H A Ddeflate.c1396 uInt wsize = s->w_size; local
1406 more = wsize;
1419 if (s->strstart >= wsize+MAX_DIST(s)) {
1421 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1422 s->match_start -= wsize;
1423 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1424 s->block_start -= (long) wsize;
1436 *p = (Pos)(m >= wsize ? m-wsize
[all...]

Completed in 270 milliseconds