get_byte           78 other-licenses/zlib/gzio.c local int    get_byte     OF((gz_stream *s));
get_byte          323 other-licenses/zlib/gzio.c     method = get_byte(s);
get_byte          324 other-licenses/zlib/gzio.c     flags = get_byte(s);
get_byte          331 other-licenses/zlib/gzio.c     for (len = 0; len < 6; len++) (void)get_byte(s);
get_byte          334 other-licenses/zlib/gzio.c         len  =  (uInt)get_byte(s);
get_byte          335 other-licenses/zlib/gzio.c         len += ((uInt)get_byte(s))<<8;
get_byte          337 other-licenses/zlib/gzio.c         while (len-- != 0 && get_byte(s) != EOF) ;
get_byte          340 other-licenses/zlib/gzio.c         while ((c = get_byte(s)) != 0 && c != EOF) ;
get_byte          343 other-licenses/zlib/gzio.c         while ((c = get_byte(s)) != 0 && c != EOF) ;
get_byte          346 other-licenses/zlib/gzio.c         for (len = 0; len < 2; len++) (void)get_byte(s);
get_byte          938 other-licenses/zlib/gzio.c     uLong x = (uLong)get_byte(s);
get_byte          941 other-licenses/zlib/gzio.c     x += ((uLong)get_byte(s))<<8;
get_byte          942 other-licenses/zlib/gzio.c     x += ((uLong)get_byte(s))<<16;
get_byte          943 other-licenses/zlib/gzio.c     c = get_byte(s);