Lines Matching defs:byte
197 unsigned short byte;
475 /* PLIP_RECEIVE --- receive a byte(two nibbles)
635 skb_reserve(rcv->skb, 2); /* Align IP on 16 byte boundaries */
639 rcv->byte = 0;
647 &rcv->nibble, &lbuf[rcv->byte]))
649 } while (++rcv->byte < rcv->length.h);
651 rcv->checksum += lbuf[--rcv->byte];
652 } while (rcv->byte);
700 /* PLIP_SEND --- send a byte (two nibbles)
824 snd->byte = 0;
831 &snd->nibble, lbuf[snd->byte]))
833 } while (++snd->byte < snd->length.h);
835 snd->checksum += lbuf[--snd->byte];
836 } while (snd->byte);