Byte              127 lib/zlib/contrib/minizip/zip.c     Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
Byte              284 lib/zlib/deflate.c     s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
Byte              306 lib/zlib/deflate.c     s->method = (Byte)method;
Byte              519 lib/zlib/deflate.c     put_byte(s, (Byte)(b >> 8));
Byte              520 lib/zlib/deflate.c     put_byte(s, (Byte)(b & 0xff));
Byte              600 lib/zlib/deflate.c                 put_byte(s, (Byte)(s->gzhead->time & 0xff));
Byte              601 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
Byte              602 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
Byte              603 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
Byte              742 lib/zlib/deflate.c                 put_byte(s, (Byte)(strm->adler & 0xff));
Byte              743 lib/zlib/deflate.c                 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
Byte              832 lib/zlib/deflate.c         put_byte(s, (Byte)(strm->adler & 0xff));
Byte              833 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
Byte              834 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
Byte              835 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
Byte              836 lib/zlib/deflate.c         put_byte(s, (Byte)(strm->total_in & 0xff));
Byte              837 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
Byte              838 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
Byte              839 lib/zlib/deflate.c         put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
Byte              917 lib/zlib/deflate.c     ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
Byte              929 lib/zlib/deflate.c     zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
Byte             1051 lib/zlib/deflate.c     register Byte scan_end1  = scan[best_len-1];
Byte             1052 lib/zlib/deflate.c     register Byte scan_end   = scan[best_len];
Byte              104 lib/zlib/deflate.h     Byte  method;        /* STORED (for zip only) or DEFLATED */
Byte              518 lib/zlib/example.c     Byte *compr, *uncompr;
Byte              534 lib/zlib/example.c     compr    = (Byte*)calloc((uInt)comprLen, 1);
Byte              535 lib/zlib/example.c     uncompr  = (Byte*)calloc((uInt)uncomprLen, 1);
Byte               59 lib/zlib/gzio.c     Byte     *inbuf;  /* input buffer */
Byte               60 lib/zlib/gzio.c     Byte     *outbuf; /* output buffer */
Byte              157 lib/zlib/gzio.c         s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
Byte              163 lib/zlib/gzio.c         s->stream.next_in  = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
Byte              399 lib/zlib/gzio.c     Byte  *next_out; /* == stream.next_out but not forced far (for MSDOS) */
Byte              406 lib/zlib/gzio.c     next_out = (Byte*)buf;
Byte              788 lib/zlib/gzio.c             s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
Byte              832 lib/zlib/gzio.c         s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
Byte             1169 lib/zlib/trees.c         put_byte(s, (Byte)s->bi_buf);
Byte             1184 lib/zlib/trees.c         put_byte(s, (Byte)s->bi_buf);
Byte              271 lib/zlib/zconf.h #  define Bytef Byte FAR
Byte              273 lib/zlib/zconf.h    typedef Byte  FAR Bytef;
Byte              285 lib/zlib/zconf.h    typedef Byte const *voidpc;
Byte              286 lib/zlib/zconf.h    typedef Byte FAR   *voidpf;
Byte              287 lib/zlib/zconf.h    typedef Byte       *voidp;
Byte              268 lib/zlib/zconf.in.h #  define Bytef Byte FAR
Byte              270 lib/zlib/zconf.in.h    typedef Byte  FAR Bytef;
Byte              282 lib/zlib/zconf.in.h    typedef Byte const *voidpc;
Byte              283 lib/zlib/zconf.in.h    typedef Byte FAR   *voidpf;
Byte              284 lib/zlib/zconf.in.h    typedef Byte       *voidp;