Lines Matching refs:Byte
76 static int read_buf (z_streamp strm, Byte *buf, unsigned size);
210 mem->window_memory = (Byte *) next; in zlib_deflateInit2()
232 s->window = (Byte *) mem->window_memory; in zlib_deflateInit2()
247 s->method = (Byte)method; in zlib_deflateInit2()
293 put_byte(s, (Byte)(b >> 8)); in putShortMSB()
294 put_byte(s, (Byte)(b & 0xff)); in putShortMSB()
495 Byte *buf, in read_buf()
560 register Byte *scan = s->window + s->strstart; /* current string */ in longest_match()
561 register Byte *match; /* matched string */ in longest_match()
577 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match()
581 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match()
582 register Byte scan_end1 = scan[best_len-1]; in longest_match()
583 register Byte scan_end = scan[best_len]; in longest_match()