Lines Matching refs:window

179    (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
184 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
281 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
293 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
335 zmemcpy(s->window, dictionary, length);
343 s->ins_h = s->window[0];
344 UPDATE_HASH(s, s->ins_h, s->window[1]);
915 TRY_FREE(strm, strm->state->window);
954 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
960 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
966 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1066 register Bytef *scan = s->window + s->strstart; /* current string */
1083 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1087 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1110 match = s->window + cur_match;
1147 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1179 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1214 register Bytef *scan = s->window + s->strstart; /* current string */
1217 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1228 match = s->window + cur_match;
1253 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1275 if (zmemcmp(s->window + match,
1276 s->window + start, length) != EQUAL) {
1280 fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
1286 do { putc(s->window[start++], stderr); } while (--length != 0);
1332 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1378 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1383 s->ins_h = s->window[s->strstart];
1384 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1413 zmemzero(s->window + curr, (unsigned)init);
1424 zmemzero(s->window + s->high_water, (unsigned)init);
1436 (charf *)&s->window[(unsigned)s->block_start] : \
1586 s->ins_h = s->window[s->strstart];
1587 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1597 Tracevv((stderr,"%c", s->window[s->strstart]));
1598 _tr_tally_lit (s, s->window[s->strstart], bflush);
1706 Tracevv((stderr,"%c", s->window[s->strstart-1]));
1707 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
1725 Tracevv((stderr,"%c", s->window[s->strstart-1]));
1726 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
1763 scan = s->window + s->strstart - 1;
1766 strend = s->window + s->strstart + MAX_MATCH;
1790 Tracevv((stderr,"%c", s->window[s->strstart]));
1791 _tr_tally_lit (s, s->window[s->strstart], bflush);
1824 Tracevv((stderr,"%c", s->window[s->strstart]));
1825 _tr_tally_lit (s, s->window[s->strstart], bflush);