Searched defs:wsize (Results 1 - 3 of 3) sorted by relevance

/forgerock/web-agents-v4/zlib/
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 Dinflate.h93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
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 203 milliseconds