Lines Matching refs:Byte
159 * Update a hash value with the given input byte
264 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
281 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
305 s->method = (Byte)method;
552 put_byte(s, (Byte)(b >> 8));
553 put_byte(s, (Byte)(b & 0xff));
633 put_byte(s, (Byte)(s->gzhead->time & 0xff));
634 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
635 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
636 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
775 put_byte(s, (Byte)(strm->adler & 0xff));
776 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
871 put_byte(s, (Byte)(strm->adler & 0xff));
872 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
873 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
874 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
875 put_byte(s, (Byte)(strm->total_in & 0xff));
876 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
877 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
878 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
956 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
968 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1090 register Byte scan_end1 = scan[best_len-1];
1091 register Byte scan_end = scan[best_len];
1301 * At least one byte has been read, or avail_in == 0; reads are
1323 * strstart == 0 && lookahead == 1 (input done a byte at time)
1467 * to pending_buf_size, and each stored block has a 5 byte header:
1598 /* No match, output a literal byte */
1746 uInt prev; /* byte at distance one to match */
1762 /* See how many times the previous byte repeats */
1791 /* No match, output a literal byte */
1824 /* Output a literal byte */