Home
last modified time | relevance | path

Searched refs:buff_in (Results 1 – 2 of 2) sorted by relevance

/linux-4.4.14/drivers/staging/speakup/
Dbuffers.c11 static u_char *buff_in = synth_buffer; variable
49 if (buff_in >= buff_out) in synth_buffer_free()
50 bytes_free = SYNTH_BUF_SIZE - (buff_in - buff_out); in synth_buffer_free()
52 bytes_free = buff_out - buff_in; in synth_buffer_free()
58 return (buff_in == buff_out); in synth_buffer_empty()
76 *buff_in++ = ch; in synth_buffer_add()
77 if (buff_in > buffer_end) in synth_buffer_add()
78 buff_in = synth_buffer; in synth_buffer_add()
85 if (buff_out == buff_in) in synth_buffer_getc()
96 if (buff_out == buff_in) in synth_buffer_peek()
[all …]
/linux-4.4.14/sound/drivers/
Dserial-u16550.c160 int buff_in; member
378 uart->buff_in = 0; in snd_uart16550_do_open()
597 unsigned short buff_in = uart->buff_in; in snd_uart16550_write_buffer() local
599 uart->tx_buff[buff_in] = byte; in snd_uart16550_write_buffer()
600 buff_in++; in snd_uart16550_write_buffer()
601 buff_in &= TX_BUFF_MASK; in snd_uart16550_write_buffer()
602 uart->buff_in = buff_in; in snd_uart16550_write_buffer()