Home | History | Annotate | Download | only in zlib

Lines Matching refs:get_byte

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