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

/freebsd-12-stable/usr.bin/gzip/
H A Dunpack.c157 int i, j, thisbyte; local
206 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF)
208 unpackd->symbolsin[i] = (unsigned char)thisbyte;
234 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF)
236 *unpackd->symbol_eob++ = (char)thisbyte;
258 int thislevel, thiscode, thisbyte, inlevelindex; local
272 thiscode = thisbyte = 0;
274 while ((thisbyte = fgetc(unpackd->fpIn)) != EOF) {
280 * Split one bit from thisbyte, from highest to lowest,
285 thiscode = (thiscode << 1) | ((thisbyte >>
[all...]

Completed in 100 milliseconds