get_byte          341 src/utils/gzio.cpp 	method = get_byte(s);
get_byte          342 src/utils/gzio.cpp 	flags = get_byte(s);
get_byte          349 src/utils/gzio.cpp 	for (len = 0; len < 6; len++) (void)get_byte(s);
get_byte          352 src/utils/gzio.cpp 		len  =  (uInt)get_byte(s);
get_byte          353 src/utils/gzio.cpp 		len += ((uInt)get_byte(s))<<8;
get_byte          355 src/utils/gzio.cpp 		while (len-- != 0 && get_byte(s) != EOF) ;
get_byte          358 src/utils/gzio.cpp 		while ((c = get_byte(s)) != 0 && c != EOF) ;
get_byte          361 src/utils/gzio.cpp 		while ((c = get_byte(s)) != 0 && c != EOF) ;
get_byte          364 src/utils/gzio.cpp 		for (len = 0; len < 2; len++) (void)get_byte(s);
get_byte          921 src/utils/gzio.cpp 	uLong x = (uLong)get_byte(s);
get_byte          924 src/utils/gzio.cpp 	x += ((uLong)get_byte(s))<<8;
get_byte          925 src/utils/gzio.cpp 	x += ((uLong)get_byte(s))<<16;
get_byte          926 src/utils/gzio.cpp 	c = get_byte(s);