Lines Matching refs:Bytef
112 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
228 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
307 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_()
336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary()
711 Bytef val; in deflate()
742 Bytef val; in deflate()
947 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy()
984 read_buf(z_streamp strm, Bytef *buf, unsigned size) in read_buf()
1057 Bytef *scan = s->window + s->strstart; /* current string */ in longest_match()
1058 Bytef *match; /* matched string */ in longest_match()
1074 Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
1078 Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
1205 Bytef *scan = s->window + s->strstart; /* current string */ in longest_match_fast()
1206 Bytef *match; /* matched string */ in longest_match_fast()
1208 Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match_fast()
1713 Bytef *scan; /* scan for end of run */