Lines Matching defs:length
130 * '\0'. Buffer begins with two Device ID length bytes as given by
135 unsigned char length[2];
143 /* First two bytes are MSB,LSB of inclusive length. */
144 retval = parport_read (port, length, 2);
153 memcpy(buffer, length, 2);
156 /* Some devices wrongly send LE length, and some send it two
158 belen = (length[0] << 8) + length[1];
159 lelen = (length[1] << 8) + length[0];
176 printk(KERN_DEBUG "%s: reported broken Device ID length of %#zX bytes\n",
183 /* Try to respect the given ID length despite all the bugs in
184 * the ID length. Read according to shortest possible ID
212 length[0], length[1]);