Home | History | Annotate | Download | only in gzip

Lines Matching defs:thisbyte

154 	int i, j, thisbyte;
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;
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 >> i) & 1);