Lines Matching refs:window
176 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
181 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
317 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
367 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
459 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
498 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
1130 TRY_FREE(strm, strm->state->window);
1168 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1173 if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
1179 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1279 register Bytef *scan = s->window + s->strstart; /* current string */
1296 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1300 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1323 match = s->window + cur_match;
1360 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1392 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1427 register Bytef *scan = s->window + s->strstart; /* current string */
1430 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1441 match = s->window + cur_match;
1466 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
1492 if (zmemcmp(s->window + match,
1493 s->window + start, length) != EQUAL) {
1497 fprintf(stderr, "%c%c", s->window[match++], s->window[start++]);
1503 do { putc(s->window[start++], stderr); } while (--length != 0);
1550 zmemcpy(s->window, s->window+wsize, (unsigned)wsize - more);
1574 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1580 s->ins_h = s->window[str];
1581 UPDATE_HASH(s, s->ins_h, s->window[str + 1]);
1586 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
1621 zmemzero(s->window + curr, (unsigned)init);
1632 zmemzero(s->window + s->high_water, (unsigned)init);
1647 (charf *)&s->window[(unsigned)s->block_start] : \
1751 zmemcpy(s->strm->next_out, s->window + s->block_start, left);
1783 zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);
1791 zmemcpy(s->window, s->window + s->w_size, s->strstart);
1797 zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
1821 zmemcpy(s->window, s->window + s->w_size, s->strstart);
1831 read_buf(s->strm, s->window + s->strstart, have);
1854 _tr_stored_block(s, (charf *)s->window + s->block_start, len, last);
1938 s->ins_h = s->window[s->strstart];
1939 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1949 Tracevv((stderr,"%c", s->window[s->strstart]));
1950 _tr_tally_lit (s, s->window[s->strstart], bflush);
2064 Tracevv((stderr,"%c", s->window[s->strstart-1]));
2065 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
2083 Tracevv((stderr,"%c", s->window[s->strstart-1]));
2084 _tr_tally_lit(s, s->window[s->strstart-1], bflush);
2127 scan = s->window + s->strstart - 1;
2130 strend = s->window + s->strstart + MAX_MATCH;
2141 Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
2155 Tracevv((stderr,"%c", s->window[s->strstart]));
2156 _tr_tally_lit (s, s->window[s->strstart], bflush);
2195 Tracevv((stderr,"%c", s->window[s->strstart]));
2196 _tr_tally_lit (s, s->window[s->strstart], bflush);