Home | History | Annotate | Download | only in zlib_v128

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));
292 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
324 const Bytef *dictionary,
361 strm->next_in = (z_const Bytef *)dictionary;
473 if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
571 Bytef *str;
1039 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1077 Bytef *buf,
1152 register Bytef *scan = s->window + s->strstart; /* current string */
1153 register Bytef *match; /* matched string */
1169 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
1173 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1300 register Bytef *scan = s->window + s->strstart; /* current string */
1301 register Bytef *match; /* matched string */
1303 register Bytef *strend = s->window + s->strstart + MAX_MATCH;
1866 Bytef *scan, *strend; /* scan goes up to strend for length of run */