Lines Matching refs:get_byte
224 #define NEXTBYTE() (uch)get_byte()
1078 magic[0] = (unsigned char)get_byte(); in gunzip()
1079 magic[1] = (unsigned char)get_byte(); in gunzip()
1080 method = (unsigned char)get_byte(); in gunzip()
1094 flags = (uch)get_byte(); in gunzip()
1107 (ulg)get_byte(); /* Get timestamp */ in gunzip()
1108 ((ulg)get_byte()) << 8; in gunzip()
1109 ((ulg)get_byte()) << 16; in gunzip()
1110 ((ulg)get_byte()) << 24; in gunzip()
1112 (void)get_byte(); /* Ignore extra flags for the moment */ in gunzip()
1113 (void)get_byte(); /* Ignore OS type for the moment */ in gunzip()
1116 unsigned len = (unsigned)get_byte(); in gunzip()
1117 len |= ((unsigned)get_byte())<<8; in gunzip()
1118 while (len--) (void)get_byte(); in gunzip()
1124 while (get_byte() != 0) /* null */ ; in gunzip()
1129 while (get_byte() != 0) /* null */ ; in gunzip()
1156 orig_crc = (ulg) get_byte(); in gunzip()
1157 orig_crc |= (ulg) get_byte() << 8; in gunzip()
1158 orig_crc |= (ulg) get_byte() << 16; in gunzip()
1159 orig_crc |= (ulg) get_byte() << 24; in gunzip()
1161 orig_len = (ulg) get_byte(); in gunzip()
1162 orig_len |= (ulg) get_byte() << 8; in gunzip()
1163 orig_len |= (ulg) get_byte() << 16; in gunzip()
1164 orig_len |= (ulg) get_byte() << 24; in gunzip()