window            185 tools/packfi2/deflate.c    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
window            190 tools/packfi2/deflate.c    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
window            287 tools/packfi2/deflate.c     s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
window            297 tools/packfi2/deflate.c     if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
window            339 tools/packfi2/deflate.c     zmemcpy(s->window, dictionary, length);
window            347 tools/packfi2/deflate.c     s->ins_h = s->window[0];
window            348 tools/packfi2/deflate.c     UPDATE_HASH(s, s->ins_h, s->window[1]);
window            881 tools/packfi2/deflate.c     TRY_FREE(strm, strm->state->window);
window            920 tools/packfi2/deflate.c     ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
window            926 tools/packfi2/deflate.c     if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
window            932 tools/packfi2/deflate.c     zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
window           1032 tools/packfi2/deflate.c     register Bytef *scan = s->window + s->strstart; /* current string */
window           1049 tools/packfi2/deflate.c     register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
window           1053 tools/packfi2/deflate.c     register Bytef *strend = s->window + s->strstart + MAX_MATCH;
window           1076 tools/packfi2/deflate.c         match = s->window + cur_match;
window           1113 tools/packfi2/deflate.c         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
window           1145 tools/packfi2/deflate.c         Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
window           1179 tools/packfi2/deflate.c     register Bytef *scan = s->window + s->strstart; /* current string */
window           1182 tools/packfi2/deflate.c     register Bytef *strend = s->window + s->strstart + MAX_MATCH;
window           1193 tools/packfi2/deflate.c     match = s->window + cur_match;
window           1218 tools/packfi2/deflate.c     Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
window           1238 tools/packfi2/deflate.c     if (zmemcmp(s->window + match,
window           1239 tools/packfi2/deflate.c                 s->window + start, length) != EQUAL) {
window           1243 tools/packfi2/deflate.c             fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
window           1249 tools/packfi2/deflate.c         do { putc(s->window[start++], stderr); } while (--length != 0);
window           1295 tools/packfi2/deflate.c             zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
window           1342 tools/packfi2/deflate.c         n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
window           1347 tools/packfi2/deflate.c             s->ins_h = s->window[s->strstart];
window           1348 tools/packfi2/deflate.c             UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
window           1366 tools/packfi2/deflate.c                    (charf *)&s->window[(unsigned)s->block_start] : \
window           1526 tools/packfi2/deflate.c                 s->ins_h = s->window[s->strstart];
window           1527 tools/packfi2/deflate.c                 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
window           1537 tools/packfi2/deflate.c             Tracevv((stderr,"%c", s->window[s->strstart]));
window           1538 tools/packfi2/deflate.c             _tr_tally_lit (s, s->window[s->strstart], bflush);
window           1649 tools/packfi2/deflate.c             Tracevv((stderr,"%c", s->window[s->strstart-1]));
window           1650 tools/packfi2/deflate.c             _tr_tally_lit(s, s->window[s->strstart-1], bflush);
window           1668 tools/packfi2/deflate.c         Tracevv((stderr,"%c", s->window[s->strstart-1]));
window           1669 tools/packfi2/deflate.c         _tr_tally_lit(s, s->window[s->strstart-1], bflush);
window           1710 tools/packfi2/deflate.c             scan = s->window + s->strstart - 1;
window           1726 tools/packfi2/deflate.c             Tracevv((stderr,"%c", s->window[s->strstart]));
window           1727 tools/packfi2/deflate.c             _tr_tally_lit (s, s->window[s->strstart], bflush);
window            113 tools/packfi2/deflate.h     Bytef *window;
window           1328 tools/packfi2/zlib.h                                          unsigned char FAR *window,
window           1340 tools/packfi2/zlib.h #define inflateBackInit(strm, windowBits, window) \
window           1341 tools/packfi2/zlib.h         inflateBackInit_((strm), (windowBits), (window), \