read1             225 lib/zlib/examples/gzappend.c     val = read1(in);
read1             226 lib/zlib/examples/gzappend.c     val += (unsigned)read1(in) << 8;
read1             227 lib/zlib/examples/gzappend.c     val += (unsigned long)read1(in) << 16;
read1             228 lib/zlib/examples/gzappend.c     val += (unsigned long)read1(in) << 24;
read1             238 lib/zlib/examples/gzappend.c     if (read1(in) != 31 || read1(in) != 139) bye(in->name, " not a gzip file");
read1             239 lib/zlib/examples/gzappend.c     if (read1(in) != 8) bye("unknown compression method in", in->name);
read1             240 lib/zlib/examples/gzappend.c     flags = read1(in);
read1             244 lib/zlib/examples/gzappend.c         n = read1(in);
read1             245 lib/zlib/examples/gzappend.c         n += (unsigned)(read1(in)) << 8;
read1             248 lib/zlib/examples/gzappend.c     if (flags & 8) while (read1(in) != 0) ;
read1             249 lib/zlib/examples/gzappend.c     if (flags & 16) while (read1(in) != 0) ;