Lines Matching refs:byte
42 unsigned char byte;
117 byte = *addr++;
118 parport_write_data (port, byte);
153 unsigned char byte = 0;
204 byte |= nibble << 4;
205 *buf++ = byte;
207 byte = nibble;
243 unsigned char byte;
270 byte = parport_read_data (port);
271 *buf++ = byte;
296 /* Read the last byte without checking data avail. */
299 pr_debug("%s: No more byte data (%zd bytes)\n",
415 unsigned char byte;
417 byte = *buf;
419 parport_write_data (port, byte);
503 unsigned char byte;
537 /* The last byte was a run-length count, so
545 byte = parport_read_data (port);
548 command or a normal data byte, don't accept it. */
550 if (byte & 0x80) {
552 port->name, byte);
559 rle_count = byte + 1;
583 port->name, byte);
596 /* If this is the byte after a run-length count, decompress. */
599 memset (buf, byte, rle_count);
605 /* Normal data byte. */
606 *buf = byte;
646 unsigned char byte;
648 byte = *buf;
650 parport_write_data (port, byte);