firsthalf        1195 drivers/usb/serial/io_edgeport.c 	int firsthalf;
firsthalf        1229 drivers/usb/serial/io_edgeport.c 	firsthalf = min(bytesleft, copySize);
firsthalf        1231 drivers/usb/serial/io_edgeport.c 		firsthalf, bytesleft);
firsthalf        1234 drivers/usb/serial/io_edgeport.c 	memcpy(&fifo->fifo[fifo->head], data, firsthalf);
firsthalf        1235 drivers/usb/serial/io_edgeport.c 	usb_serial_debug_data(&port->dev, __func__, firsthalf, &fifo->fifo[fifo->head]);
firsthalf        1238 drivers/usb/serial/io_edgeport.c 	fifo->head  += firsthalf;
firsthalf        1239 drivers/usb/serial/io_edgeport.c 	fifo->count += firsthalf;
firsthalf        1245 drivers/usb/serial/io_edgeport.c 	secondhalf = copySize-firsthalf;
firsthalf        1249 drivers/usb/serial/io_edgeport.c 		memcpy(&fifo->fifo[fifo->head], &data[firsthalf], secondhalf);
firsthalf        1295 drivers/usb/serial/io_edgeport.c 	int		firsthalf;
firsthalf        1345 drivers/usb/serial/io_edgeport.c 	firsthalf = min(bytesleft, count);
firsthalf        1346 drivers/usb/serial/io_edgeport.c 	memcpy(&buffer[2], &fifo->fifo[fifo->tail], firsthalf);
firsthalf        1347 drivers/usb/serial/io_edgeport.c 	fifo->tail  += firsthalf;
firsthalf        1348 drivers/usb/serial/io_edgeport.c 	fifo->count -= firsthalf;
firsthalf        1352 drivers/usb/serial/io_edgeport.c 	secondhalf = count-firsthalf;
firsthalf        1354 drivers/usb/serial/io_edgeport.c 		memcpy(&buffer[2+firsthalf], &fifo->fifo[fifo->tail],