Symbol: Byte
common/dist/zlib/deflate.c
1100
put_byte(s, (Byte)(s->gzhead->time & 0xff));
common/dist/zlib/deflate.c
1101
put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
common/dist/zlib/deflate.c
1102
put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
common/dist/zlib/deflate.c
1103
put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
common/dist/zlib/deflate.c
1198
put_byte(s, (Byte)(strm->adler & 0xff));
common/dist/zlib/deflate.c
1199
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
common/dist/zlib/deflate.c
1271
put_byte(s, (Byte)(strm->adler & 0xff));
common/dist/zlib/deflate.c
1272
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
common/dist/zlib/deflate.c
1273
put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
common/dist/zlib/deflate.c
1274
put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
common/dist/zlib/deflate.c
1275
put_byte(s, (Byte)(strm->total_in & 0xff));
common/dist/zlib/deflate.c
1276
put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
common/dist/zlib/deflate.c
1277
put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
common/dist/zlib/deflate.c
1278
put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
common/dist/zlib/deflate.c
1344
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
common/dist/zlib/deflate.c
1415
Byte scan_end1 = scan[best_len - 1];
common/dist/zlib/deflate.c
1416
Byte scan_end = scan[best_len];
common/dist/zlib/deflate.c
460
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
common/dist/zlib/deflate.c
532
s->method = (Byte)method;
common/dist/zlib/deflate.c
942
put_byte(s, (Byte)(b >> 8));
common/dist/zlib/deflate.c
943
put_byte(s, (Byte)(b & 0xff));
common/dist/zlib/deflate.h
116
Byte method; /* can only be DEFLATED */
common/dist/zlib/test/example.c
172
static void test_deflate(Byte *compr, uLong comprLen) {
common/dist/zlib/test/example.c
207
static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
246
static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
299
static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
338
static void test_flush(Byte *compr, uLong *comprLen) {
common/dist/zlib/test/example.c
373
static void test_sync(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
414
static void test_dict_deflate(Byte *compr, uLong comprLen) {
common/dist/zlib/test/example.c
448
static void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
498
Byte *compr, *uncompr;
common/dist/zlib/test/example.c
515
compr = (Byte*)calloc((uInt)comprLen, 1);
common/dist/zlib/test/example.c
516
uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
common/dist/zlib/test/example.c
66
static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
common/dist/zlib/test/example.c
90
static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) {
common/dist/zlib/trees.c
174
put_byte(s, (Byte)s->bi_buf);
common/dist/zlib/trees.c
187
put_byte(s, (Byte)s->bi_buf);
common/dist/zlib/zconf.h
418
# define Bytef Byte FAR
common/dist/zlib/zconf.h
420
typedef Byte FAR Bytef;
common/dist/zlib/zconf.h
432
typedef Byte const *voidpc;
common/dist/zlib/zconf.h
433
typedef Byte FAR *voidpf;
common/dist/zlib/zconf.h
434
typedef Byte *voidp;
sys/net/zlib.c
1014
put_byte(s, (Byte)(b >> 8));
sys/net/zlib.c
1015
put_byte(s, (Byte)(b & 0xff));
sys/net/zlib.c
1237
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
sys/net/zlib.c
1250
zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
sys/net/zlib.c
1376
Byte scan_end1 = scan[best_len-1];
sys/net/zlib.c
1377
Byte scan_end = scan[best_len];
sys/net/zlib.c
3227
s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
sys/net/zlib.c
3256
put_byte(s, (Byte)s->bi_buf);
sys/net/zlib.c
3270
put_byte(s, (Byte)s->bi_buf);
sys/net/zlib.c
3711
static const Byte mark[4] = {0, 0, 0xff, 0xff};
sys/net/zlib.c
376
Byte data_type; /* UNKNOWN, BINARY or ASCII */
sys/net/zlib.c
377
Byte method; /* STORED (for zip only) or DEFLATED */
sys/net/zlib.c
3789
Byte Exop; /* number of extra bits or operation */
sys/net/zlib.c
3790
Byte Bits; /* number of bits in this code or subcode */
sys/net/zlib.c
3946
#define OUTBYTE(a) {*q++=(Byte)(a);m--;}
sys/net/zlib.c
4665
r.bits = (Byte)l; /* bits to dump before this table */
sys/net/zlib.c
4666
r.exop = (Byte)j; /* bits in this table */
sys/net/zlib.c
4676
r.bits = (Byte)(k - w);
sys/net/zlib.c
4681
r.exop = (Byte)(*p < 256 ? 0 : 32 + 64); /* 256 is end-of-block */
sys/net/zlib.c
4686
r.exop = (Byte)(e[*p - s] + 16 + 64);/* non-simple--look up in lists */
sys/net/zlib.c
5107
Byte lbits; /* ltree bits decoded per branch */
sys/net/zlib.c
5108
Byte dbits; /* dtree bits decoder per branch */
sys/net/zlib.c
5124
c->lbits = (Byte)bl;
sys/net/zlib.c
5125
c->dbits = (Byte)bd;
sys/net/zlib.c
5468
*q++ = (Byte)t->base;
sys/net/zlib.c
5559
*q++ = (Byte)t->base;
sys/net/zlib.c
869
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
sys/net/zlib.c
891
s->method = (Byte)method;
sys/net/zlib.h
267
# define Bytef Byte FAR
sys/net/zlib.h
269
typedef Byte FAR Bytef;
sys/net/zlib.h
280
typedef Byte FAR *voidpf;
sys/net/zlib.h
281
typedef Byte *voidp;