Lines Matching refs:Byte
373 Bytef *pending_out; /* next pending byte to output to the stream */
376 Byte data_type; /* UNKNOWN, BINARY or ASCII */
377 Byte method; /* STORED (for zip only) or DEFLATED */
417 * byte no longer takes part in the hash key, that is:
538 /* Output a byte on the stream.
762 * Update a hash value with the given input byte
869 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
891 s->method = (Byte)method;
1014 put_byte(s, (Byte)(b >> 8));
1015 put_byte(s, (Byte)(b & 0xff));
1237 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1250 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
1376 Byte scan_end1 = scan[best_len-1];
1377 Byte scan_end = scan[best_len];
1580 * At least one byte has been read, or avail_in == 0; reads are
1600 * and lookahead == 1 (input done one byte at time)
1706 * to pending_buf_size, and each stored block has a 5 byte header:
1836 /* No match, output a literal byte */
3105 s->compressed_len += 7; /* align on byte boundary */
3181 send_code(s, lc, ltree); /* send a literal byte */
3227 s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
3256 put_byte(s, (Byte)s->bi_buf);
3263 * Flush the bit buffer and align the output on a byte boundary
3270 put_byte(s, (Byte)s->bi_buf);
3288 bi_windup(s); /* align on byte boundary */
3371 METHOD, /* waiting for method byte */
3372 FLAG, /* waiting for flag byte */
3376 DICT1, /* one dictionary check byte to go */
3382 CHECK1, /* one check byte to go */
3395 uInt method; /* if FLAGS, method byte */
3711 static const Byte mark[4] = {0, 0, 0xff, 0xff};
3789 Byte Exop; /* number of extra bits or operation */
3790 Byte Bits; /* number of bits in this code or subcode */
3918 Bytef *end; /* one byte after sliding window */
3946 #define OUTBYTE(a) {*q++=(Byte)(a);m--;}
4096 t = k & 7; /* go to byte boundary */
4665 r.bits = (Byte)l; /* bits to dump before this table */
4666 r.exop = (Byte)j; /* bits in this table */
4676 r.bits = (Byte)(k - w);
4681 r.exop = (Byte)(*p < 256 ? 0 : 32 + 64); /* 256 is end-of-block */
4686 r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */
5107 Byte lbits; /* ltree bits decoded per branch */
5108 Byte dbits; /* dtree bits decoder per branch */
5124 c->lbits = (Byte)bl;
5125 c->dbits = (Byte)bd;
5271 if (k > 7) /* return unused byte, if any */
5468 *q++ = (Byte)t->base;
5559 *q++ = (Byte)t->base;