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

/freebsd-current/usr.bin/gzip/
H A Dunpack.c154 int i, j, thisbyte; local
203 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF)
205 unpackd->symbolsin[i] = (unsigned char)thisbyte;
231 if ((thisbyte = fgetc(unpackd->fpIn)) == EOF)
233 *unpackd->symbol_eob++ = (char)thisbyte;
255 int thislevel, thiscode, thisbyte, inlevelindex; local
269 thiscode = thisbyte = 0;
271 while ((thisbyte = fgetc(unpackd->fpIn)) != EOF) {
277 * Split one bit from thisbyte, from highest to lowest,
282 thiscode = (thiscode << 1) | ((thisbyte >>
[all...]

Completed in 52 milliseconds