Lines Matching defs:length
46 * with the length set and the CRC set to zero. The CRC is then OR'd into
189 unsigned char length = urb->actual_length;
193 if (!length)
199 if (length < 2) {
204 fcs = fcs_compute10(data, length, CRC10_INITFCS);
210 actual_length = data[length - 2] >> 2;
211 if (actual_length > (length - 2)) {
213 __func__, actual_length, length);
217 length = actual_length;
219 tty_insert_flip_string(&port->port, data, length);