Symbol: Byte
lib/libz/deflate.c
1094
put_byte(s, (Byte)(s->gzhead->time & 0xff));
lib/libz/deflate.c
1095
put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
lib/libz/deflate.c
1096
put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
lib/libz/deflate.c
1097
put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
lib/libz/deflate.c
1192
put_byte(s, (Byte)(strm->adler & 0xff));
lib/libz/deflate.c
1193
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
lib/libz/deflate.c
1265
put_byte(s, (Byte)(strm->adler & 0xff));
lib/libz/deflate.c
1266
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
lib/libz/deflate.c
1267
put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
lib/libz/deflate.c
1268
put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
lib/libz/deflate.c
1269
put_byte(s, (Byte)(strm->total_in & 0xff));
lib/libz/deflate.c
1270
put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
lib/libz/deflate.c
1271
put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
lib/libz/deflate.c
1272
put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
lib/libz/deflate.c
1338
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
lib/libz/deflate.c
1409
Byte scan_end1 = scan[best_len - 1];
lib/libz/deflate.c
1410
Byte scan_end = scan[best_len];
lib/libz/deflate.c
454
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
lib/libz/deflate.c
526
s->method = (Byte)method;
lib/libz/deflate.c
936
put_byte(s, (Byte)(b >> 8));
lib/libz/deflate.c
937
put_byte(s, (Byte)(b & 0xff));
lib/libz/deflate.h
112
Byte method; /* can only be DEFLATED */
lib/libz/trees.c
170
put_byte(s, (Byte)s->bi_buf);
lib/libz/trees.c
183
put_byte(s, (Byte)s->bi_buf);
lib/libz/zconf.h
408
# define Bytef Byte FAR
lib/libz/zconf.h
410
typedef Byte FAR Bytef;
lib/libz/zconf.h
422
typedef Byte const *voidpc;
lib/libz/zconf.h
423
typedef Byte FAR *voidpf;
lib/libz/zconf.h
424
typedef Byte *voidp;
regress/lib/libz/example.c
166
static void test_deflate(Byte *compr, uLong comprLen) {
regress/lib/libz/example.c
201
static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
240
static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
293
static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
332
static void test_flush(Byte *compr, uLong *comprLen) {
regress/lib/libz/example.c
367
static void test_sync(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
408
static void test_dict_deflate(Byte *compr, uLong comprLen) {
regress/lib/libz/example.c
442
static void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
492
Byte *compr, *uncompr;
regress/lib/libz/example.c
509
compr = (Byte*)calloc((uInt)comprLen, 1);
regress/lib/libz/example.c
510
uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
regress/lib/libz/example.c
60
static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
regress/lib/libz/example.c
84
static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) {
sys/lib/libz/deflate.c
1094
put_byte(s, (Byte)(s->gzhead->time & 0xff));
sys/lib/libz/deflate.c
1095
put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
sys/lib/libz/deflate.c
1096
put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
sys/lib/libz/deflate.c
1097
put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
sys/lib/libz/deflate.c
1192
put_byte(s, (Byte)(strm->adler & 0xff));
sys/lib/libz/deflate.c
1193
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
sys/lib/libz/deflate.c
1265
put_byte(s, (Byte)(strm->adler & 0xff));
sys/lib/libz/deflate.c
1266
put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
sys/lib/libz/deflate.c
1267
put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
sys/lib/libz/deflate.c
1268
put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
sys/lib/libz/deflate.c
1269
put_byte(s, (Byte)(strm->total_in & 0xff));
sys/lib/libz/deflate.c
1270
put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
sys/lib/libz/deflate.c
1271
put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
sys/lib/libz/deflate.c
1272
put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
sys/lib/libz/deflate.c
1300
TRY_FREE(strm, strm->state->window, strm->state->w_size * 2 * sizeof(Byte));
sys/lib/libz/deflate.c
1338
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
sys/lib/libz/deflate.c
1409
Byte scan_end1 = scan[best_len - 1];
sys/lib/libz/deflate.c
1410
Byte scan_end = scan[best_len];
sys/lib/libz/deflate.c
454
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
sys/lib/libz/deflate.c
526
s->method = (Byte)method;
sys/lib/libz/deflate.c
936
put_byte(s, (Byte)(b >> 8));
sys/lib/libz/deflate.c
937
put_byte(s, (Byte)(b & 0xff));
sys/lib/libz/deflate.h
112
Byte method; /* can only be DEFLATED */
sys/lib/libz/trees.c
170
put_byte(s, (Byte)s->bi_buf);
sys/lib/libz/trees.c
183
put_byte(s, (Byte)s->bi_buf);
sys/lib/libz/zconf.h
408
# define Bytef Byte FAR
sys/lib/libz/zconf.h
410
typedef Byte FAR Bytef;
sys/lib/libz/zconf.h
422
typedef Byte const *voidpc;
sys/lib/libz/zconf.h
423
typedef Byte FAR *voidpf;
sys/lib/libz/zconf.h
424
typedef Byte *voidp;