Lines Matching refs:out_buffer

140 	unsigned char out_buffer[OUT_BUFFER_SIZE] __attribute__ ((aligned(32)));  member
356 port->outp = port->out_buffer; in initialize_port()
705 port->outp = port->out_buffer; in sync_serial_ioctl_unlocked()
716 port->outp = port->out_buffer; in sync_serial_ioctl_unlocked()
984 unsigned long out_buffer; in sync_serial_write() local
1013 out_buffer = (unsigned long)port->out_buffer; in sync_serial_write()
1016 if (free_outp >= out_buffer + OUT_BUFFER_SIZE) in sync_serial_write()
1019 c = out_buffer + OUT_BUFFER_SIZE - free_outp; in sync_serial_write()
1034 free_outp-out_buffer, c, c1)); in sync_serial_write()
1035 if (copy_from_user((void *)out_buffer, buf, c1)) in sync_serial_write()
1179 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in send_word()
1180 port->outp = port->out_buffer; in send_word()
1188 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in send_word()
1189 port->outp = port->out_buffer; in send_word()
1196 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in send_word()
1197 port->outp = port->out_buffer; in send_word()
1203 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in send_word()
1204 port->outp = port->out_buffer; in send_word()
1210 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in send_word()
1211 port->outp = port->out_buffer; in send_word()
1298 if (port->outp >= port->out_buffer + OUT_BUFFER_SIZE) in tr_interrupt()
1299 port->outp = port->out_buffer; in tr_interrupt()
1301 int c = port->out_buffer + OUT_BUFFER_SIZE - port->outp; in tr_interrupt()