unpack.c | 154 int i, j, thisbyte; local in function:unpack_parse_header 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 in function:unpack_decode 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) [all...] |