Home | History | Annotate | Download | only in zlib-1.2.8

Lines Matching refs:Bytef

87 local int read_buf        OF((z_streamp strm, Bytef *buf, unsigned size));
198 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
325 const Bytef *dictionary;
362 strm->next_in = (z_const Bytef *)dictionary;
474 if ((Bytef
572 Bytef *str;
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1078 Bytef *buf;
1153 register Bytef *scan = s->window + s->strstart; /* current string */
1154 register Bytef *match; /* matched string */
1170 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1174 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1301 register Bytef *scan = s->window + s->strstart; /* current string */
1302 register Bytef *match; /* matched string */
1304 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1867 Bytef *scan, *strend; /* scan goes up to strend for length of run */