strstart          289 net/zlib.c         uInt strstart;               /* start of string to insert */
strstart          929 net/zlib.c         s->strstart = 0;
strstart          957 net/zlib.c         Bytef *scan = s->window + s->strstart; /* current string */
strstart          961 net/zlib.c         IPos limit = s->strstart > (IPos)MAX_DIST(s) ?
strstart          962 net/zlib.c             s->strstart - (IPos)MAX_DIST(s) : NIL;
strstart          973 net/zlib.c         Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
strstart          977 net/zlib.c         Bytef *strend = s->window + s->strstart + MAX_MATCH;
strstart          991 net/zlib.c         Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
strstart          994 net/zlib.c             Assert(cur_match < s->strstart, "no future");
strstart         1131 net/zlib.c             more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
strstart         1134 net/zlib.c             if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
strstart         1145 net/zlib.c             } else if (s->strstart >= wsize+MAX_DIST(s)) {
strstart         1153 net/zlib.c                 s->strstart    -= wsize; /* we now have strstart >= MAX_DIST */
strstart         1194 net/zlib.c             n = read_buf(s->strm, (charf *)s->window + s->strstart + s->lookahead,
strstart         1200 net/zlib.c                 s->ins_h = s->window[s->strstart];
strstart         1201 net/zlib.c                 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
strstart         1220 net/zlib.c                (charf *)Z_NULL), (long)s->strstart - s->block_start, (flush)); \
strstart         1221 net/zlib.c        s->block_start = s->strstart; \
strstart         1265 net/zlib.c                 INSERT_STRING(s, s->strstart, hash_head);
strstart         1271 net/zlib.c             if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
strstart         1284 net/zlib.c                 check_match(s, s->strstart, s->match_start, s->match_length);
strstart         1286 net/zlib.c                 bflush = ct_tally(s, s->strstart - s->match_start,
strstart         1298 net/zlib.c                         s->strstart++;
strstart         1299 net/zlib.c                         INSERT_STRING(s, s->strstart, hash_head);
strstart         1304 net/zlib.c                     s->strstart++;
strstart         1306 net/zlib.c                     s->strstart += s->match_length;
strstart         1308 net/zlib.c                     s->ins_h = s->window[s->strstart];
strstart         1309 net/zlib.c                     UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
strstart         1319 net/zlib.c                 Tracevv((stderr,"%c", s->window[s->strstart]));
strstart         1320 net/zlib.c                 bflush = ct_tally (s, 0, s->window[s->strstart]);
strstart         1322 net/zlib.c                 s->strstart++;
strstart         1360 net/zlib.c                 INSERT_STRING(s, s->strstart, hash_head);
strstart         1369 net/zlib.c                 s->strstart - hash_head <= MAX_DIST(s)) {
strstart         1382 net/zlib.c                       s->strstart - s->match_start > TOO_FAR))) {
strstart         1394 net/zlib.c                 uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
strstart         1397 net/zlib.c                 check_match(s, s->strstart-1, s->prev_match, s->prev_length);
strstart         1399 net/zlib.c                 bflush = ct_tally(s, s->strstart -1 - s->prev_match,
strstart         1410 net/zlib.c                     if (++s->strstart <= max_insert) {
strstart         1411 net/zlib.c                         INSERT_STRING(s, s->strstart, hash_head);
strstart         1416 net/zlib.c                 s->strstart++;
strstart         1425 net/zlib.c                 Tracevv((stderr,"%c", s->window[s->strstart-1]));
strstart         1426 net/zlib.c                 if (ct_tally (s, 0, s->window[s->strstart-1])) {
strstart         1429 net/zlib.c                 s->strstart++;
strstart         1437 net/zlib.c                 s->strstart++;
strstart         1443 net/zlib.c             Tracevv((stderr,"%c", s->window[s->strstart-1]));
strstart         1444 net/zlib.c             ct_tally (s, 0, s->window[s->strstart-1]);
strstart         2441 net/zlib.c             ulg in_length = (ulg)s->strstart - s->block_start;