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