Home | History | Annotate | Download | only in zlib

Lines Matching refs:strend

1161     register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1165 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1224 scan < strend);
1231 len = (MAX_MATCH - 1) - (int)(strend-scan);
1232 scan = strend - (MAX_MATCH-1);
1261 scan < strend);
1267 scan < strend);
1272 len = MAX_MATCH - (int)(strend - scan);
1273 scan = strend - MAX_MATCH;
1360 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1396 scan < strend);
1400 len = MAX_MATCH - (int)(strend - scan);
1946 Bytef *scan, *strend; /* scan goes up to strend for length of run */
1967 strend = s->window + s->strstart + MAX_MATCH;
1973 scan < strend);
1974 s->match_length = MAX_MATCH - (int)(strend - scan);