Lines Matching refs:WINSIZE
58 #define WINSIZE 32768U /* sliding window size */
66 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */
122 memcpy(next->window, window + WINSIZE - left, left);
123 if (left < WINSIZE)
124 memcpy(next->window + left, window, WINSIZE - left);
147 unsigned char window[WINSIZE];
182 strm.avail_out = WINSIZE;
251 unsigned char discard[WINSIZE];
283 (void)inflateSetDictionary(&strm, here->window, WINSIZE);
296 if (offset > WINSIZE) { /* skip WINSIZE bytes */
297 strm.avail_out = WINSIZE;
299 offset -= WINSIZE;