Lines Matching refs:Byte
307 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_()
329 s->method = (Byte)method; in deflateInit2_()
547 put_byte(s, (Byte)(b >> 8)); in putShortMSB()
548 put_byte(s, (Byte)(b & 0xff)); in putShortMSB()
631 put_byte(s, (Byte)(s->gzhead->time & 0xff)); in deflate()
632 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff)); in deflate()
633 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff)); in deflate()
634 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff)); in deflate()
773 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate()
774 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate()
863 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate()
864 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate()
865 put_byte(s, (Byte)((strm->adler >> 16) & 0xff)); in deflate()
866 put_byte(s, (Byte)((strm->adler >> 24) & 0xff)); in deflate()
867 put_byte(s, (Byte)(strm->total_in & 0xff)); in deflate()
868 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff)); in deflate()
869 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff)); in deflate()
870 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff)); in deflate()
947 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy()
959 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); in deflateCopy()
1079 Byte scan_end1 = scan[best_len-1]; in longest_match()
1080 Byte scan_end = scan[best_len]; in longest_match()