tag | line | file | source code |
get_byte | 218 | lib/inflate.c | #define NEXTBYTE() (uch)get_byte() |
get_byte | 1067 | lib/inflate.c | magic[0] = (unsigned char)get_byte(); |
get_byte | 1068 | lib/inflate.c | magic[1] = (unsigned char)get_byte(); |
get_byte | 1069 | lib/inflate.c | method = (unsigned char)get_byte(); |
get_byte | 1083 | lib/inflate.c | flags = (uch)get_byte(); |
get_byte | 1096 | lib/inflate.c | (ulg)get_byte(); /* Get timestamp */ |
get_byte | 1097 | lib/inflate.c | ((ulg)get_byte()) << 8; |
get_byte | 1098 | lib/inflate.c | ((ulg)get_byte()) << 16; |
get_byte | 1099 | lib/inflate.c | ((ulg)get_byte()) << 24; |
get_byte | 1101 | lib/inflate.c | (void)get_byte(); /* Ignore extra flags for the moment */ |
get_byte | 1102 | lib/inflate.c | (void)get_byte(); /* Ignore OS type for the moment */ |
get_byte | 1105 | lib/inflate.c | unsigned len = (unsigned)get_byte(); |
get_byte | 1106 | lib/inflate.c | len |= ((unsigned)get_byte())<<8; |
get_byte | 1107 | lib/inflate.c | while (len--) (void)get_byte(); |
get_byte | 1113 | lib/inflate.c | while (get_byte() != 0) /* null */ ; |
get_byte | 1118 | lib/inflate.c | while (get_byte() != 0) /* null */ ; |
get_byte | 1145 | lib/inflate.c | orig_crc = (ulg) get_byte(); |
get_byte | 1146 | lib/inflate.c | orig_crc |= (ulg) get_byte() << 8; |
get_byte | 1147 | lib/inflate.c | orig_crc |= (ulg) get_byte() << 16; |
get_byte | 1148 | lib/inflate.c | orig_crc |= (ulg) get_byte() << 24; |
get_byte | 1150 | lib/inflate.c | orig_len = (ulg) get_byte(); |
get_byte | 1151 | lib/inflate.c | orig_len |= (ulg) get_byte() << 8; |
get_byte | 1152 | lib/inflate.c | orig_len |= (ulg) get_byte() << 16; |
get_byte | 1153 | lib/inflate.c | orig_len |= (ulg) get_byte() << 24; |