Home
last modified time | relevance | path

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

/freebsd-13.1/usr.bin/gzip/
H A Dunpack.c157 int i, j, thisbyte; in unpack_parse_header() local
206 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF) in unpack_parse_header()
208 unpackd->symbolsin[i] = (unsigned char)thisbyte; in unpack_parse_header()
234 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF) in unpack_parse_header()
236 *unpackd->symbol_eob++ = (char)thisbyte; in unpack_parse_header()
258 int thislevel, thiscode, thisbyte, inlevelindex; in unpack_decode() local
272 thiscode = thisbyte = 0; in unpack_decode()
274 while ((thisbyte = fgetc(unpackd->fpIn)) != EOF) { in unpack_decode()
285 thiscode = (thiscode << 1) | ((thisbyte >> i) & 1); in unpack_decode()