Lines Matching refs:data
17 * While the USB protocol has a CRC over the data while in transit, i.e. while
19 * hardware has any problems getting the data into or out of the USB transmit
20 * and receive FIFO's then data can be lost.
23 * number of bytes of valid data and a 10 bit CRC that will allow the receiver
35 * 0..N-2 data and optional padding
37 * N-2 bits 7-2 - number of bytes of valid data
45 * The 10 bit CRC is computed across the sent data, followed by the trailer
188 unsigned char *data = urb->transfer_buffer;
204 fcs = fcs_compute10(data, length, CRC10_INITFCS);
210 actual_length = data[length - 2] >> 2;
219 tty_insert_flip_string(&port->port, data, length);