Home
last modified time | relevance | path

Searched refs:thisbyte (Results 1 – 1 of 1) sorted by relevance

/freebsd/usr.bin/gzip/
H A Dunpack.c154 int i, j, thisbyte; in unpack_parse_header() local
203 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF) in unpack_parse_header()
205 unpackd->symbolsin[i] = (unsigned char)thisbyte; in unpack_parse_header()
231 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF) in unpack_parse_header()
233 *unpackd->symbol_eob++ = (char)thisbyte; in unpack_parse_header()
255 int thislevel, thiscode, thisbyte, inlevelindex; in unpack_decode() local
269 thiscode = thisbyte = 0; in unpack_decode()
271 while ((thisbyte = fgetc(unpackd->fpIn)) != EOF) { in unpack_decode()
282 thiscode = (thiscode << 1) | ((thisbyte >> i) & 1); in unpack_decode()